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

difftreelog

source

tests/src/interfaces/augment-api-events.ts28.3 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, u128, u32, u64, u8 } from '@polkadot/types-codec';10import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';11import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, SpRuntimeDispatchError, 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    balances: {18      /**19       * A balance was set by root.20       **/21      BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;22      /**23       * Some amount was deposited (e.g. for transaction fees).24       **/25      Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;26      /**27       * An account was removed whose balance was non-zero but below ExistentialDeposit,28       * resulting in an outright loss.29       **/30      DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;31      /**32       * An account was created with some free balance.33       **/34      Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;35      /**36       * Some balance was reserved (moved from free to reserved).37       **/38      Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;39      /**40       * Some balance was moved from the reserve of the first account to the second account.41       * Final argument indicates the destination balance type.42       **/43      ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;44      /**45       * Some amount was removed from the account (e.g. for misbehavior).46       **/47      Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;48      /**49       * Transfer succeeded.50       **/51      Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;52      /**53       * Some balance was unreserved (moved from reserved to free).54       **/55      Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;56      /**57       * Some amount was withdrawn from the account (e.g. for transaction fees).58       **/59      Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;60      /**61       * Generic event62       **/63      [key: string]: AugmentedEvent<ApiType>;64    };65    common: {66      /**67       * Amount pieces of token owned by `sender` was approved for `spender`.68       **/69      Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;70      /**71       * New collection was created72       **/73      CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;74      /**75       * New collection was destroyed76       **/77      CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;78      /**79       * The property has been deleted.80       **/81      CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;82      /**83       * The colletion property has been added or edited.84       **/85      CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;86      /**87       * New item was created.88       **/89      ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;90      /**91       * Collection item was burned.92       **/93      ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;94      /**95       * The token property permission of a collection has been set.96       **/97      PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;98      /**99       * The token property has been deleted.100       **/101      TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;102      /**103       * The token property has been added or edited.104       **/105      TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;106      /**107       * Item was transferred108       **/109      Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;110      /**111       * Generic event112       **/113      [key: string]: AugmentedEvent<ApiType>;114    };115    cumulusXcm: {116      /**117       * Downward message executed with the given outcome.118       * \[ id, outcome \]119       **/120      ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;121      /**122       * Downward message is invalid XCM.123       * \[ id \]124       **/125      InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;126      /**127       * Downward message is unsupported version of XCM.128       * \[ id \]129       **/130      UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;131      /**132       * Generic event133       **/134      [key: string]: AugmentedEvent<ApiType>;135    };136    dmpQueue: {137      /**138       * Downward message executed with the given outcome.139       **/140      ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;141      /**142       * Downward message is invalid XCM.143       **/144      InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;145      /**146       * Downward message is overweight and was placed in the overweight queue.147       **/148      OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64 }>;149      /**150       * Downward message from the overweight queue was executed.151       **/152      OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: u64], { overweightIndex: u64, weightUsed: u64 }>;153      /**154       * Downward message is unsupported version of XCM.155       **/156      UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;157      /**158       * The weight limit for handling downward messages was reached.159       **/160      WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64], { messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64 }>;161      /**162       * Generic event163       **/164      [key: string]: AugmentedEvent<ApiType>;165    };166    ethereum: {167      /**168       * An ethereum transaction was successfully executed. [from, to/contract_address, transaction_hash, exit_reason]169       **/170      Executed: AugmentedEvent<ApiType, [H160, H160, H256, EvmCoreErrorExitReason]>;171      /**172       * Generic event173       **/174      [key: string]: AugmentedEvent<ApiType>;175    };176    evm: {177      /**178       * A deposit has been made at a given address. \[sender, address, value\]179       **/180      BalanceDeposit: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;181      /**182       * A withdrawal has been made from a given address. \[sender, address, value\]183       **/184      BalanceWithdraw: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;185      /**186       * A contract has been created at given \[address\].187       **/188      Created: AugmentedEvent<ApiType, [H160]>;189      /**190       * A \[contract\] was attempted to be created, but the execution failed.191       **/192      CreatedFailed: AugmentedEvent<ApiType, [H160]>;193      /**194       * A \[contract\] has been executed successfully with states applied.195       **/196      Executed: AugmentedEvent<ApiType, [H160]>;197      /**198       * A \[contract\] has been executed with errors. States are reverted with only gas fees applied.199       **/200      ExecutedFailed: AugmentedEvent<ApiType, [H160]>;201      /**202       * Ethereum events from contracts.203       **/204      Log: AugmentedEvent<ApiType, [EthereumLog]>;205      /**206       * Generic event207       **/208      [key: string]: AugmentedEvent<ApiType>;209    };210    parachainSystem: {211      /**212       * Downward messages were processed using the given weight.213       **/214      DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: u64, dmqHead: H256], { weightUsed: u64, dmqHead: H256 }>;215      /**216       * Some downward messages have been received and will be processed.217       **/218      DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;219      /**220       * An upgrade has been authorized.221       **/222      UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;223      /**224       * The validation function was applied as of the contained relay chain block number.225       **/226      ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;227      /**228       * The relay-chain aborted the upgrade process.229       **/230      ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;231      /**232       * The validation function has been scheduled to apply.233       **/234      ValidationFunctionStored: AugmentedEvent<ApiType, []>;235      /**236       * Generic event237       **/238      [key: string]: AugmentedEvent<ApiType>;239    };240    polkadotXcm: {241      /**242       * Some assets have been placed in an asset trap.243       * 244       * \[ hash, origin, assets \]245       **/246      AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;247      /**248       * Execution of an XCM message was attempted.249       * 250       * \[ outcome \]251       **/252      Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;253      /**254       * Expected query response has been received but the origin location of the response does255       * not match that expected. The query remains registered for a later, valid, response to256       * be received and acted upon.257       * 258       * \[ origin location, id, expected location \]259       **/260      InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;261      /**262       * Expected query response has been received but the expected origin location placed in263       * storage by this runtime previously cannot be decoded. The query remains registered.264       * 265       * This is unexpected (since a location placed in storage in a previously executing266       * runtime should be readable prior to query timeout) and dangerous since the possibly267       * valid response will be dropped. Manual governance intervention is probably going to be268       * needed.269       * 270       * \[ origin location, id \]271       **/272      InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;273      /**274       * Query response has been received and query is removed. The registered notification has275       * been dispatched and executed successfully.276       * 277       * \[ id, pallet index, call index \]278       **/279      Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;280      /**281       * Query response has been received and query is removed. The dispatch was unable to be282       * decoded into a `Call`; this might be due to dispatch function having a signature which283       * is not `(origin, QueryId, Response)`.284       * 285       * \[ id, pallet index, call index \]286       **/287      NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;288      /**289       * Query response has been received and query is removed. There was a general error with290       * dispatching the notification call.291       * 292       * \[ id, pallet index, call index \]293       **/294      NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;295      /**296       * Query response has been received and query is removed. The registered notification could297       * not be dispatched because the dispatch weight is greater than the maximum weight298       * originally budgeted by this runtime for the query result.299       * 300       * \[ id, pallet index, call index, actual weight, max budgeted weight \]301       **/302      NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>;303      /**304       * A given location which had a version change subscription was dropped owing to an error305       * migrating the location to our new XCM format.306       * 307       * \[ location, query ID \]308       **/309      NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;310      /**311       * A given location which had a version change subscription was dropped owing to an error312       * sending the notification to it.313       * 314       * \[ location, query ID, error \]315       **/316      NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;317      /**318       * Query response has been received and is ready for taking with `take_response`. There is319       * no registered notification call.320       * 321       * \[ id, response \]322       **/323      ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;324      /**325       * Received query response has been read and removed.326       * 327       * \[ id \]328       **/329      ResponseTaken: AugmentedEvent<ApiType, [u64]>;330      /**331       * A XCM message was sent.332       * 333       * \[ origin, destination, message \]334       **/335      Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;336      /**337       * The supported version of a location has been changed. This might be through an338       * automatic notification or a manual intervention.339       * 340       * \[ location, XCM version \]341       **/342      SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;343      /**344       * Query response received which does not match a registered query. This may be because a345       * matching query was never registered, it may be because it is a duplicate response, or346       * because the query timed out.347       * 348       * \[ origin location, id \]349       **/350      UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;351      /**352       * An XCM version change notification message has been attempted to be sent.353       * 354       * \[ destination, result \]355       **/356      VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;357      /**358       * Generic event359       **/360      [key: string]: AugmentedEvent<ApiType>;361    };362    structure: {363      /**364       * Executed call on behalf of the token.365       **/366      Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;367      /**368       * Generic event369       **/370      [key: string]: AugmentedEvent<ApiType>;371    };372    sudo: {373      /**374       * The \[sudoer\] just switched identity; the old key is supplied if one existed.375       **/376      KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;377      /**378       * A sudo just took place. \[result\]379       **/380      Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;381      /**382       * A sudo just took place. \[result\]383       **/384      SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;385      /**386       * Generic event387       **/388      [key: string]: AugmentedEvent<ApiType>;389    };390    system: {391      /**392       * `:code` was updated.393       **/394      CodeUpdated: AugmentedEvent<ApiType, []>;395      /**396       * An extrinsic failed.397       **/398      ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;399      /**400       * An extrinsic completed successfully.401       **/402      ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;403      /**404       * An account was reaped.405       **/406      KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;407      /**408       * A new account was created.409       **/410      NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;411      /**412       * On on-chain remark happened.413       **/414      Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;415      /**416       * Generic event417       **/418      [key: string]: AugmentedEvent<ApiType>;419    };420    tokens: {421      /**422       * A balance was set by root.423       **/424      BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128 }>;425      /**426       * Deposited some balance into an account427       **/428      Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;429      /**430       * An account was removed whose balance was non-zero but below431       * ExistentialDeposit, resulting in an outright loss.432       **/433      DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;434      /**435       * An account was created with some free balance.436       **/437      Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;438      /**439       * Some locked funds were unlocked440       **/441      LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32 }>;442      /**443       * Some funds are locked444       **/445      LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;446      /**447       * Some balance was reserved (moved from free to reserved).448       **/449      Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;450      /**451       * Some reserved balance was repatriated (moved from reserved to452       * another account).453       **/454      ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;455      /**456       * Some balances were slashed (e.g. due to mis-behavior)457       **/458      Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;459      /**460       * The total issuance of an currency has been set461       **/462      TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, amount: u128], { currencyId: PalletForeignAssetsAssetIds, amount: u128 }>;463      /**464       * Transfer succeeded.465       **/466      Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;467      /**468       * Some balance was unreserved (moved from reserved to free).469       **/470      Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;471      /**472       * Some balances were withdrawn (e.g. pay for transaction fee)473       **/474      Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;475      /**476       * Generic event477       **/478      [key: string]: AugmentedEvent<ApiType>;479    };480    transactionPayment: {481      /**482       * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,483       * has been paid by `who`.484       **/485      TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;486      /**487       * Generic event488       **/489      [key: string]: AugmentedEvent<ApiType>;490    };491    treasury: {492      /**493       * Some funds have been allocated.494       **/495      Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;496      /**497       * Some of our funds have been burnt.498       **/499      Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;500      /**501       * Some funds have been deposited.502       **/503      Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;504      /**505       * New proposal.506       **/507      Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;508      /**509       * A proposal was rejected; funds were slashed.510       **/511      Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;512      /**513       * Spending has finished; this is the amount that rolls over until next spend.514       **/515      Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;516      /**517       * A new spend proposal has been approved.518       **/519      SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;520      /**521       * We have ended a spend period and will now allocate funds.522       **/523      Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;524      /**525       * Generic event526       **/527      [key: string]: AugmentedEvent<ApiType>;528    };529    unique: {530      /**531       * Address was added to the allow list532       * 533       * # Arguments534       * * collection_id: ID of the affected collection.535       * * user: Address of the added account.536       **/537      AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;538      /**539       * Address was removed from the allow list540       * 541       * # Arguments542       * * collection_id: ID of the affected collection.543       * * user: Address of the removed account.544       **/545      AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;546      /**547       * Collection admin was added548       * 549       * # Arguments550       * * collection_id: ID of the affected collection.551       * * admin: Admin address.552       **/553      CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;554      /**555       * Collection admin was removed556       * 557       * # Arguments558       * * collection_id: ID of the affected collection.559       * * admin: Removed admin address.560       **/561      CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;562      /**563       * Collection limits were set564       * 565       * # Arguments566       * * collection_id: ID of the affected collection.567       **/568      CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;569      /**570       * Collection owned was changed571       * 572       * # Arguments573       * * collection_id: ID of the affected collection.574       * * owner: New owner address.575       **/576      CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;577      /**578       * Collection permissions were set579       * 580       * # Arguments581       * * collection_id: ID of the affected collection.582       **/583      CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;584      /**585       * Collection sponsor was removed586       * 587       * # Arguments588       * * collection_id: ID of the affected collection.589       **/590      CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;591      /**592       * Collection sponsor was set593       * 594       * # Arguments595       * * collection_id: ID of the affected collection.596       * * owner: New sponsor address.597       **/598      CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;599      /**600       * New sponsor was confirm601       * 602       * # Arguments603       * * collection_id: ID of the affected collection.604       * * sponsor: New sponsor address.605       **/606      SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;607      /**608       * Generic event609       **/610      [key: string]: AugmentedEvent<ApiType>;611    };612    vesting: {613      /**614       * Claimed vesting.615       **/616      Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;617      /**618       * Added new vesting schedule.619       **/620      VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;621      /**622       * Updated vesting schedules.623       **/624      VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;625      /**626       * Generic event627       **/628      [key: string]: AugmentedEvent<ApiType>;629    };630    xcmpQueue: {631      /**632       * Bad XCM format used.633       **/634      BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;635      /**636       * Bad XCM version used.637       **/638      BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;639      /**640       * Some XCM failed.641       **/642      Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64 }>;643      /**644       * An XCM exceeded the individual message weight budget.645       **/646      OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: u64], { sender: u32, sentAt: u32, index: u64, required: u64 }>;647      /**648       * An XCM from the overweight queue was executed with the given actual weight used.649       **/650      OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: u64], { index: u64, used: u64 }>;651      /**652       * Some XCM was executed ok.653       **/654      Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: u64], { messageHash: Option<H256>, weight: u64 }>;655      /**656       * An upward message was sent to the relay chain.657       **/658      UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;659      /**660       * An HRMP message was sent to a sibling parachain.661       **/662      XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;663      /**664       * Generic event665       **/666      [key: string]: AugmentedEvent<ApiType>;667    };668    xTokens: {669      /**670       * Transferred `MultiAsset` with fee.671       **/672      TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation], { sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation }>;673      /**674       * Generic event675       **/676      [key: string]: AugmentedEvent<ApiType>;677    };678  } // AugmentedEvents679} // declare module