git.delta.rocks / unique-network / refs/commits / 8138c78fd9cb

difftreelog

source

tests/src/interfaces/augment-api-events.ts28.1 KiBsourcehistory
1// Auto-generated via `yarn polkadot-types-from-chain`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/api-base/types/events';78import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';9import type { Bytes, Null, Option, Result, 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    appPromotion: {19      SetAdmin: AugmentedEvent<ApiType, [AccountId32]>;20      Stake: AugmentedEvent<ApiType, [AccountId32, u128]>;21      StakingRecalculation: AugmentedEvent<ApiType, [AccountId32, u128, u128]>;22      Unstake: AugmentedEvent<ApiType, [AccountId32, u128]>;23      /**24       * Generic event25       **/26      [key: string]: AugmentedEvent<ApiType>;27    };28    balances: {29      /**30       * A balance was set by root.31       **/32      BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;33      /**34       * Some amount was deposited (e.g. for transaction fees).35       **/36      Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;37      /**38       * An account was removed whose balance was non-zero but below ExistentialDeposit,39       * resulting in an outright loss.40       **/41      DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;42      /**43       * An account was created with some free balance.44       **/45      Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;46      /**47       * Some balance was reserved (moved from free to reserved).48       **/49      Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;50      /**51       * Some balance was moved from the reserve of the first account to the second account.52       * Final argument indicates the destination balance type.53       **/54      ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;55      /**56       * Some amount was removed from the account (e.g. for misbehavior).57       **/58      Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;59      /**60       * Transfer succeeded.61       **/62      Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;63      /**64       * Some balance was unreserved (moved from reserved to free).65       **/66      Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;67      /**68       * Some amount was withdrawn from the account (e.g. for transaction fees).69       **/70      Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;71      /**72       * Generic event73       **/74      [key: string]: AugmentedEvent<ApiType>;75    };76    common: {77      /**78       * Amount pieces of token owned by `sender` was approved for `spender`.79       **/80      Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;81      /**82       * New collection was created83       **/84      CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;85      /**86       * New collection was destroyed87       **/88      CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;89      /**90       * The property has been deleted.91       **/92      CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;93      /**94       * The colletion property has been added or edited.95       **/96      CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;97      /**98       * New item was created.99       **/100      ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;101      /**102       * Collection item was burned.103       **/104      ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;105      /**106       * The token property permission of a collection has been set.107       **/108      PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;109      /**110       * The token property has been deleted.111       **/112      TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;113      /**114       * The token property has been added or edited.115       **/116      TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;117      /**118       * Item was transferred119       **/120      Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;121      /**122       * Generic event123       **/124      [key: string]: AugmentedEvent<ApiType>;125    };126    cumulusXcm: {127      /**128       * Downward message executed with the given outcome.129       * \[ id, outcome \]130       **/131      ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;132      /**133       * Downward message is invalid XCM.134       * \[ id \]135       **/136      InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;137      /**138       * Downward message is unsupported version of XCM.139       * \[ id \]140       **/141      UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;142      /**143       * Generic event144       **/145      [key: string]: AugmentedEvent<ApiType>;146    };147    dmpQueue: {148      /**149       * Downward message executed with the given outcome.150       **/151      ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;152      /**153       * Downward message is invalid XCM.154       **/155      InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;156      /**157       * Downward message is overweight and was placed in the overweight queue.158       **/159      OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64 }>;160      /**161       * Downward message from the overweight queue was executed.162       **/163      OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: u64], { overweightIndex: u64, weightUsed: u64 }>;164      /**165       * Downward message is unsupported version of XCM.166       **/167      UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;168      /**169       * The weight limit for handling downward messages was reached.170       **/171      WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64], { messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64 }>;172      /**173       * Generic event174       **/175      [key: string]: AugmentedEvent<ApiType>;176    };177    ethereum: {178      /**179       * An ethereum transaction was successfully executed. [from, to/contract_address, transaction_hash, exit_reason]180       **/181      Executed: AugmentedEvent<ApiType, [H160, H160, H256, EvmCoreErrorExitReason]>;182      /**183       * Generic event184       **/185      [key: string]: AugmentedEvent<ApiType>;186    };187    evm: {188      /**189       * A deposit has been made at a given address. \[sender, address, value\]190       **/191      BalanceDeposit: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;192      /**193       * A withdrawal has been made from a given address. \[sender, address, value\]194       **/195      BalanceWithdraw: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;196      /**197       * A contract has been created at given \[address\].198       **/199      Created: AugmentedEvent<ApiType, [H160]>;200      /**201       * A \[contract\] was attempted to be created, but the execution failed.202       **/203      CreatedFailed: AugmentedEvent<ApiType, [H160]>;204      /**205       * A \[contract\] has been executed successfully with states applied.206       **/207      Executed: AugmentedEvent<ApiType, [H160]>;208      /**209       * A \[contract\] has been executed with errors. States are reverted with only gas fees applied.210       **/211      ExecutedFailed: AugmentedEvent<ApiType, [H160]>;212      /**213       * Ethereum events from contracts.214       **/215      Log: AugmentedEvent<ApiType, [EthereumLog]>;216      /**217       * Generic event218       **/219      [key: string]: AugmentedEvent<ApiType>;220    };221    parachainSystem: {222      /**223       * Downward messages were processed using the given weight.224       **/225      DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: u64, dmqHead: H256], { weightUsed: u64, dmqHead: H256 }>;226      /**227       * Some downward messages have been received and will be processed.228       **/229      DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;230      /**231       * An upgrade has been authorized.232       **/233      UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;234      /**235       * The validation function was applied as of the contained relay chain block number.236       **/237      ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;238      /**239       * The relay-chain aborted the upgrade process.240       **/241      ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;242      /**243       * The validation function has been scheduled to apply.244       **/245      ValidationFunctionStored: AugmentedEvent<ApiType, []>;246      /**247       * Generic event248       **/249      [key: string]: AugmentedEvent<ApiType>;250    };251    polkadotXcm: {252      /**253       * Some assets have been placed in an asset trap.254       * 255       * \[ hash, origin, assets \]256       **/257      AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;258      /**259       * Execution of an XCM message was attempted.260       * 261       * \[ outcome \]262       **/263      Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;264      /**265       * Expected query response has been received but the origin location of the response does266       * not match that expected. The query remains registered for a later, valid, response to267       * be received and acted upon.268       * 269       * \[ origin location, id, expected location \]270       **/271      InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;272      /**273       * Expected query response has been received but the expected origin location placed in274       * storage by this runtime previously cannot be decoded. The query remains registered.275       * 276       * This is unexpected (since a location placed in storage in a previously executing277       * runtime should be readable prior to query timeout) and dangerous since the possibly278       * valid response will be dropped. Manual governance intervention is probably going to be279       * needed.280       * 281       * \[ origin location, id \]282       **/283      InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;284      /**285       * Query response has been received and query is removed. The registered notification has286       * been dispatched and executed successfully.287       * 288       * \[ id, pallet index, call index \]289       **/290      Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;291      /**292       * Query response has been received and query is removed. The dispatch was unable to be293       * decoded into a `Call`; this might be due to dispatch function having a signature which294       * is not `(origin, QueryId, Response)`.295       * 296       * \[ id, pallet index, call index \]297       **/298      NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;299      /**300       * Query response has been received and query is removed. There was a general error with301       * dispatching the notification call.302       * 303       * \[ id, pallet index, call index \]304       **/305      NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;306      /**307       * Query response has been received and query is removed. The registered notification could308       * not be dispatched because the dispatch weight is greater than the maximum weight309       * originally budgeted by this runtime for the query result.310       * 311       * \[ id, pallet index, call index, actual weight, max budgeted weight \]312       **/313      NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>;314      /**315       * A given location which had a version change subscription was dropped owing to an error316       * migrating the location to our new XCM format.317       * 318       * \[ location, query ID \]319       **/320      NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;321      /**322       * A given location which had a version change subscription was dropped owing to an error323       * sending the notification to it.324       * 325       * \[ location, query ID, error \]326       **/327      NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;328      /**329       * Query response has been received and is ready for taking with `take_response`. There is330       * no registered notification call.331       * 332       * \[ id, response \]333       **/334      ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;335      /**336       * Received query response has been read and removed.337       * 338       * \[ id \]339       **/340      ResponseTaken: AugmentedEvent<ApiType, [u64]>;341      /**342       * A XCM message was sent.343       * 344       * \[ origin, destination, message \]345       **/346      Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;347      /**348       * The supported version of a location has been changed. This might be through an349       * automatic notification or a manual intervention.350       * 351       * \[ location, XCM version \]352       **/353      SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;354      /**355       * Query response received which does not match a registered query. This may be because a356       * matching query was never registered, it may be because it is a duplicate response, or357       * because the query timed out.358       * 359       * \[ origin location, id \]360       **/361      UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;362      /**363       * An XCM version change notification message has been attempted to be sent.364       * 365       * \[ destination, result \]366       **/367      VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;368      /**369       * Generic event370       **/371      [key: string]: AugmentedEvent<ApiType>;372    };373    rmrkCore: {374      CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;375      CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;376      CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;377      IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;378      NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;379      NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;380      NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;381      NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;382      NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;383      PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;384      PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;385      ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;386      ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;387      ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;388      ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;389      /**390       * Generic event391       **/392      [key: string]: AugmentedEvent<ApiType>;393    };394    rmrkEquip: {395      BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;396      EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;397      /**398       * Generic event399       **/400      [key: string]: AugmentedEvent<ApiType>;401    };402    scheduler: {403      /**404       * The call for the provided hash was not found so the task has been aborted.405       **/406      CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;407      /**408       * Canceled some task.409       **/410      Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;411      /**412       * Dispatched some task.413       **/414      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> }>;415      /**416       * Scheduled some task.417       **/418      Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;419      /**420       * Generic event421       **/422      [key: string]: AugmentedEvent<ApiType>;423    };424    structure: {425      /**426       * Executed call on behalf of the token.427       **/428      Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;429      /**430       * Generic event431       **/432      [key: string]: AugmentedEvent<ApiType>;433    };434    sudo: {435      /**436       * The \[sudoer\] just switched identity; the old key is supplied if one existed.437       **/438      KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;439      /**440       * A sudo just took place. \[result\]441       **/442      Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;443      /**444       * A sudo just took place. \[result\]445       **/446      SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;447      /**448       * Generic event449       **/450      [key: string]: AugmentedEvent<ApiType>;451    };452    system: {453      /**454       * `:code` was updated.455       **/456      CodeUpdated: AugmentedEvent<ApiType, []>;457      /**458       * An extrinsic failed.459       **/460      ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;461      /**462       * An extrinsic completed successfully.463       **/464      ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;465      /**466       * An account was reaped.467       **/468      KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;469      /**470       * A new account was created.471       **/472      NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;473      /**474       * On on-chain remark happened.475       **/476      Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;477      /**478       * Generic event479       **/480      [key: string]: AugmentedEvent<ApiType>;481    };482    transactionPayment: {483      /**484       * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,485       * has been paid by `who`.486       **/487      TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;488      /**489       * Generic event490       **/491      [key: string]: AugmentedEvent<ApiType>;492    };493    treasury: {494      /**495       * Some funds have been allocated.496       **/497      Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;498      /**499       * Some of our funds have been burnt.500       **/501      Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;502      /**503       * Some funds have been deposited.504       **/505      Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;506      /**507       * New proposal.508       **/509      Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;510      /**511       * A proposal was rejected; funds were slashed.512       **/513      Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;514      /**515       * Spending has finished; this is the amount that rolls over until next spend.516       **/517      Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;518      /**519       * A new spend proposal has been approved.520       **/521      SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;522      /**523       * We have ended a spend period and will now allocate funds.524       **/525      Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;526      /**527       * Generic event528       **/529      [key: string]: AugmentedEvent<ApiType>;530    };531    unique: {532      /**533       * Address was added to the allow list534       * 535       * # Arguments536       * * collection_id: ID of the affected collection.537       * * user: Address of the added account.538       **/539      AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;540      /**541       * Address was removed from the allow list542       * 543       * # Arguments544       * * collection_id: ID of the affected collection.545       * * user: Address of the removed account.546       **/547      AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;548      /**549       * Collection admin was added550       * 551       * # Arguments552       * * collection_id: ID of the affected collection.553       * * admin: Admin address.554       **/555      CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;556      /**557       * Collection admin was removed558       * 559       * # Arguments560       * * collection_id: ID of the affected collection.561       * * admin: Removed admin address.562       **/563      CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;564      /**565       * Collection limits were set566       * 567       * # Arguments568       * * collection_id: ID of the affected collection.569       **/570      CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;571      /**572       * Collection owned was changed573       * 574       * # Arguments575       * * collection_id: ID of the affected collection.576       * * owner: New owner address.577       **/578      CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;579      /**580       * Collection permissions were set581       * 582       * # Arguments583       * * collection_id: ID of the affected collection.584       **/585      CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;586      /**587       * Collection sponsor was removed588       * 589       * # Arguments590       * * collection_id: ID of the affected collection.591       **/592      CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;593      /**594       * Collection sponsor was set595       * 596       * # Arguments597       * * collection_id: ID of the affected collection.598       * * owner: New sponsor address.599       **/600      CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;601      /**602       * New sponsor was confirm603       * 604       * # Arguments605       * * collection_id: ID of the affected collection.606       * * sponsor: New sponsor address.607       **/608      SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;609      /**610       * Generic event611       **/612      [key: string]: AugmentedEvent<ApiType>;613    };614    vesting: {615      /**616       * Claimed vesting.617       **/618      Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;619      /**620       * Added new vesting schedule.621       **/622      VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;623      /**624       * Updated vesting schedules.625       **/626      VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;627      /**628       * Generic event629       **/630      [key: string]: AugmentedEvent<ApiType>;631    };632    xcmpQueue: {633      /**634       * Bad XCM format used.635       **/636      BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;637      /**638       * Bad XCM version used.639       **/640      BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;641      /**642       * Some XCM failed.643       **/644      Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64 }>;645      /**646       * An XCM exceeded the individual message weight budget.647       **/648      OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: u64], { sender: u32, sentAt: u32, index: u64, required: u64 }>;649      /**650       * An XCM from the overweight queue was executed with the given actual weight used.651       **/652      OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: u64], { index: u64, used: u64 }>;653      /**654       * Some XCM was executed ok.655       **/656      Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: u64], { messageHash: Option<H256>, weight: u64 }>;657      /**658       * An upward message was sent to the relay chain.659       **/660      UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;661      /**662       * An HRMP message was sent to a sibling parachain.663       **/664      XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;665      /**666       * Generic event667       **/668      [key: string]: AugmentedEvent<ApiType>;669    };670  } // AugmentedEvents671} // declare module