git.delta.rocks / unique-network / refs/commits / 611e7535f9cc

difftreelog

source

tests/src/interfaces/augment-api-events.ts29.1 KiBsourcehistory
1// Auto-generated via `yarn polkadot-types-from-chain`, do not edit2/* eslint-disable */34import type { ApiTypes } from '@polkadot/api-base/types';5import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';6import type { ITuple } from '@polkadot/types-codec/types';7import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';8import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';910declare module '@polkadot/api-base/types/events' {11  export interface AugmentedEvents<ApiType extends ApiTypes> {12    balances: {13      /**14       * A balance was set by root.15       **/16      BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;17      /**18       * Some amount was deposited (e.g. for transaction fees).19       **/20      Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;21      /**22       * An account was removed whose balance was non-zero but below ExistentialDeposit,23       * resulting in an outright loss.24       **/25      DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;26      /**27       * An account was created with some free balance.28       **/29      Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;30      /**31       * Some balance was reserved (moved from free to reserved).32       **/33      Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;34      /**35       * Some balance was moved from the reserve of the first account to the second account.36       * Final argument indicates the destination balance type.37       **/38      ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;39      /**40       * Some amount was removed from the account (e.g. for misbehavior).41       **/42      Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;43      /**44       * Transfer succeeded.45       **/46      Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;47      /**48       * Some balance was unreserved (moved from reserved to free).49       **/50      Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;51      /**52       * Some amount was withdrawn from the account (e.g. for transaction fees).53       **/54      Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;55      /**56       * Generic event57       **/58      [key: string]: AugmentedEvent<ApiType>;59    };60    common: {61      /**62       * Sponsoring allowance was approved.63       * 64       * # Arguments65       * 66       * * collection_id - todo:doc flesh out67       * * item_id68       * * sender69       * * spender70       * * amount71       **/72      Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;73      /**74       * New collection was created75       * 76       * # Arguments77       * 78       * * collection_id - Globally unique identifier of newly created collection.79       * * mode - [CollectionMode] converted into u8.80       * * account_id - Collection owner.81       **/82      CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;83      /**84       * New collection was destroyed85       * 86       * # Arguments87       * 88       * * collection_id - Globally unique identifier of collection that has been destroyed.89       **/90      CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;91      /**92       * Collection property was deleted.93       * 94       * # Arguments95       * 96       * * collection_id - ID of the collection, whose property was just deleted.97       * * property_key - Key of the property that was just deleted.98       **/99      CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;100      /**101       * Collection property was added or edited.102       * 103       * # Arguments104       * 105       * * collection_id - ID of the collection, whose property was just set.106       * * property_key - Key of the property that was just set.107       **/108      CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;109      /**110       * New item was created.111       * 112       * # Arguments113       * 114       * * collection_id - ID of the collection where the item was created.115       * * item_id - ID of the item. Unique within the collection.116       * * recipient - Owner of the newly created item.117       * * amount - The amount of tokens that were created (always 1 for NFT).118       **/119      ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;120      /**121       * Collection item was burned.122       * 123       * # Arguments124       * 125       * * collection_id - Identifier of the collection to which the burned NFT belonged.126       * * item_id - Identifier of burned NFT.127       * * owner - Which user has destroyed their tokens.128       * * amount - Amount of tokens that were destroyed (always 1 for NFT).129       **/130      ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;131      /**132       * Token property permission was added or updated for a collection.133       * 134       * # Arguments135       * 136       * * collection_id - ID of the collection, whose permissions were just set/updated.137       * * property_key - Key of the property of the set/updated permission.138       **/139      PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;140      /**141       * Item property was deleted.142       * 143       * # Arguments144       * 145       * * collection_id - ID of the collection, whose token's property was just deleted.146       * * item_id - ID of the item, whose property was just deleted.147       * * property_key - Key of the property that was just deleted.148       **/149      TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;150      /**151       * Item property was added or edited.152       * 153       * # Arguments154       * 155       * * collection_id - ID of the collection, whose token's property was just set.156       * * item_id - ID of the item, whose property was just set.157       * * property_key - Key of the property that was just set.158       **/159      TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;160      /**161       * Item was transferred.162       * 163       * # Arguments164       * 165       * * collection_id - ID of the collection to which the item belongs.166       * * item_id - ID of the item transferred.167       * * sender - Original owner of the item.168       * * recipient - New owner of the item.169       * * amount - Amount of tokens that were transferred (always 1 for NFT).170       **/171      Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;172      /**173       * Generic event174       **/175      [key: string]: AugmentedEvent<ApiType>;176    };177    cumulusXcm: {178      /**179       * Downward message executed with the given outcome.180       * \[ id, outcome \]181       **/182      ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;183      /**184       * Downward message is invalid XCM.185       * \[ id \]186       **/187      InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;188      /**189       * Downward message is unsupported version of XCM.190       * \[ id \]191       **/192      UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;193      /**194       * Generic event195       **/196      [key: string]: AugmentedEvent<ApiType>;197    };198    dmpQueue: {199      /**200       * Downward message executed with the given outcome.201       **/202      ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;203      /**204       * Downward message is invalid XCM.205       **/206      InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;207      /**208       * Downward message is overweight and was placed in the overweight queue.209       **/210      OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64 }>;211      /**212       * Downward message from the overweight queue was executed.213       **/214      OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: u64], { overweightIndex: u64, weightUsed: u64 }>;215      /**216       * Downward message is unsupported version of XCM.217       **/218      UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;219      /**220       * The weight limit for handling downward messages was reached.221       **/222      WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64], { messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64 }>;223      /**224       * Generic event225       **/226      [key: string]: AugmentedEvent<ApiType>;227    };228    ethereum: {229      /**230       * An ethereum transaction was successfully executed. [from, to/contract_address, transaction_hash, exit_reason]231       **/232      Executed: AugmentedEvent<ApiType, [H160, H160, H256, EvmCoreErrorExitReason]>;233      /**234       * Generic event235       **/236      [key: string]: AugmentedEvent<ApiType>;237    };238    evm: {239      /**240       * A deposit has been made at a given address. \[sender, address, value\]241       **/242      BalanceDeposit: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;243      /**244       * A withdrawal has been made from a given address. \[sender, address, value\]245       **/246      BalanceWithdraw: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;247      /**248       * A contract has been created at given \[address\].249       **/250      Created: AugmentedEvent<ApiType, [H160]>;251      /**252       * A \[contract\] was attempted to be created, but the execution failed.253       **/254      CreatedFailed: AugmentedEvent<ApiType, [H160]>;255      /**256       * A \[contract\] has been executed successfully with states applied.257       **/258      Executed: AugmentedEvent<ApiType, [H160]>;259      /**260       * A \[contract\] has been executed with errors. States are reverted with only gas fees applied.261       **/262      ExecutedFailed: AugmentedEvent<ApiType, [H160]>;263      /**264       * Ethereum events from contracts.265       **/266      Log: AugmentedEvent<ApiType, [EthereumLog]>;267      /**268       * Generic event269       **/270      [key: string]: AugmentedEvent<ApiType>;271    };272    parachainSystem: {273      /**274       * Downward messages were processed using the given weight.275       **/276      DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: u64, dmqHead: H256], { weightUsed: u64, dmqHead: H256 }>;277      /**278       * Some downward messages have been received and will be processed.279       **/280      DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;281      /**282       * An upgrade has been authorized.283       **/284      UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;285      /**286       * The validation function was applied as of the contained relay chain block number.287       **/288      ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;289      /**290       * The relay-chain aborted the upgrade process.291       **/292      ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;293      /**294       * The validation function has been scheduled to apply.295       **/296      ValidationFunctionStored: AugmentedEvent<ApiType, []>;297      /**298       * Generic event299       **/300      [key: string]: AugmentedEvent<ApiType>;301    };302    polkadotXcm: {303      /**304       * Some assets have been placed in an asset trap.305       * 306       * \[ hash, origin, assets \]307       **/308      AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;309      /**310       * Execution of an XCM message was attempted.311       * 312       * \[ outcome \]313       **/314      Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;315      /**316       * Expected query response has been received but the origin location of the response does317       * not match that expected. The query remains registered for a later, valid, response to318       * be received and acted upon.319       * 320       * \[ origin location, id, expected location \]321       **/322      InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;323      /**324       * Expected query response has been received but the expected origin location placed in325       * storage by this runtime previously cannot be decoded. The query remains registered.326       * 327       * This is unexpected (since a location placed in storage in a previously executing328       * runtime should be readable prior to query timeout) and dangerous since the possibly329       * valid response will be dropped. Manual governance intervention is probably going to be330       * needed.331       * 332       * \[ origin location, id \]333       **/334      InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;335      /**336       * Query response has been received and query is removed. The registered notification has337       * been dispatched and executed successfully.338       * 339       * \[ id, pallet index, call index \]340       **/341      Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;342      /**343       * Query response has been received and query is removed. The dispatch was unable to be344       * decoded into a `Call`; this might be due to dispatch function having a signature which345       * is not `(origin, QueryId, Response)`.346       * 347       * \[ id, pallet index, call index \]348       **/349      NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;350      /**351       * Query response has been received and query is removed. There was a general error with352       * dispatching the notification call.353       * 354       * \[ id, pallet index, call index \]355       **/356      NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;357      /**358       * Query response has been received and query is removed. The registered notification could359       * not be dispatched because the dispatch weight is greater than the maximum weight360       * originally budgeted by this runtime for the query result.361       * 362       * \[ id, pallet index, call index, actual weight, max budgeted weight \]363       **/364      NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>;365      /**366       * A given location which had a version change subscription was dropped owing to an error367       * migrating the location to our new XCM format.368       * 369       * \[ location, query ID \]370       **/371      NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;372      /**373       * A given location which had a version change subscription was dropped owing to an error374       * sending the notification to it.375       * 376       * \[ location, query ID, error \]377       **/378      NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;379      /**380       * Query response has been received and is ready for taking with `take_response`. There is381       * no registered notification call.382       * 383       * \[ id, response \]384       **/385      ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;386      /**387       * Received query response has been read and removed.388       * 389       * \[ id \]390       **/391      ResponseTaken: AugmentedEvent<ApiType, [u64]>;392      /**393       * A XCM message was sent.394       * 395       * \[ origin, destination, message \]396       **/397      Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;398      /**399       * The supported version of a location has been changed. This might be through an400       * automatic notification or a manual intervention.401       * 402       * \[ location, XCM version \]403       **/404      SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;405      /**406       * Query response received which does not match a registered query. This may be because a407       * matching query was never registered, it may be because it is a duplicate response, or408       * because the query timed out.409       * 410       * \[ origin location, id \]411       **/412      UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;413      /**414       * An XCM version change notification message has been attempted to be sent.415       * 416       * \[ destination, result \]417       **/418      VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;419      /**420       * Generic event421       **/422      [key: string]: AugmentedEvent<ApiType>;423    };424    rmrkCore: {425      CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;426      CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;427      CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;428      IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;429      NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;430      NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;431      NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;432      NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;433      NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;434      PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;435      PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;436      ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;437      ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;438      ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;439      ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;440      /**441       * Generic event442       **/443      [key: string]: AugmentedEvent<ApiType>;444    };445    rmrkEquip: {446      BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;447      EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;448      /**449       * Generic event450       **/451      [key: string]: AugmentedEvent<ApiType>;452    };453    scheduler: {454      /**455       * The call for the provided hash was not found so the task has been aborted.456       **/457      CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;458      /**459       * Canceled some task.460       **/461      Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;462      /**463       * Dispatched some task.464       **/465      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> }>;466      /**467       * Scheduled some task.468       **/469      Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;470      /**471       * Generic event472       **/473      [key: string]: AugmentedEvent<ApiType>;474    };475    structure: {476      /**477       * Executed call on behalf of the token.478       **/479      Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;480      /**481       * Generic event482       **/483      [key: string]: AugmentedEvent<ApiType>;484    };485    sudo: {486      /**487       * The \[sudoer\] just switched identity; the old key is supplied if one existed.488       **/489      KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;490      /**491       * A sudo just took place. \[result\]492       **/493      Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;494      /**495       * A sudo just took place. \[result\]496       **/497      SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;498      /**499       * Generic event500       **/501      [key: string]: AugmentedEvent<ApiType>;502    };503    system: {504      /**505       * `:code` was updated.506       **/507      CodeUpdated: AugmentedEvent<ApiType, []>;508      /**509       * An extrinsic failed.510       **/511      ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;512      /**513       * An extrinsic completed successfully.514       **/515      ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;516      /**517       * An account was reaped.518       **/519      KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;520      /**521       * A new account was created.522       **/523      NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;524      /**525       * On on-chain remark happened.526       **/527      Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;528      /**529       * Generic event530       **/531      [key: string]: AugmentedEvent<ApiType>;532    };533    treasury: {534      /**535       * Some funds have been allocated.536       **/537      Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;538      /**539       * Some of our funds have been burnt.540       **/541      Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;542      /**543       * Some funds have been deposited.544       **/545      Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;546      /**547       * New proposal.548       **/549      Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;550      /**551       * A proposal was rejected; funds were slashed.552       **/553      Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;554      /**555       * Spending has finished; this is the amount that rolls over until next spend.556       **/557      Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;558      /**559       * We have ended a spend period and will now allocate funds.560       **/561      Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;562      /**563       * Generic event564       **/565      [key: string]: AugmentedEvent<ApiType>;566    };567    unique: {568      /**569       * Address was added to the allow list570       * 571       * # Arguments572       * 573       * * collection_id: Globally unique collection identifier.574       * 575       * * user:  Address.576       **/577      AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;578      /**579       * Address was removed from the allow list580       * 581       * # Arguments582       * 583       * * collection_id: Globally unique collection identifier.584       * 585       * * user:  Address.586       **/587      AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;588      /**589       * Collection admin was added590       * 591       * # Arguments592       * 593       * * collection_id: Globally unique collection identifier.594       * 595       * * admin:  Admin address.596       **/597      CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;598      /**599       * Collection admin was removed600       * 601       * # Arguments602       * 603       * * collection_id: Globally unique collection identifier.604       * 605       * * admin:  Admin address.606       **/607      CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;608      /**609       * Collection limits were set610       * 611       * # Arguments612       * 613       * * collection_id: Globally unique collection identifier.614       **/615      CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;616      /**617       * Collection owned was changed618       * 619       * # Arguments620       * 621       * * collection_id: Globally unique collection identifier.622       * 623       * * owner:  New owner address.624       **/625      CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;626      /**627       * Collection permissions were set628       * 629       * # Arguments630       * 631       * * collection_id: Globally unique collection identifier.632       **/633      CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;634      /**635       * Collection sponsor was removed636       * 637       * # Arguments638       * 639       * * collection_id: Globally unique collection identifier.640       **/641      CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;642      /**643       * Collection sponsor was set644       * 645       * # Arguments646       * 647       * * collection_id: Globally unique collection identifier.648       * 649       * * owner:  New sponsor address.650       **/651      CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;652      /**653       * New sponsor was confirm654       * 655       * # Arguments656       * 657       * * collection_id: Globally unique collection identifier.658       * 659       * * sponsor:  New sponsor address.660       **/661      SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;662      /**663       * Generic event664       **/665      [key: string]: AugmentedEvent<ApiType>;666    };667    vesting: {668      /**669       * Claimed vesting.670       **/671      Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;672      /**673       * Added new vesting schedule.674       **/675      VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;676      /**677       * Updated vesting schedules.678       **/679      VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;680      /**681       * Generic event682       **/683      [key: string]: AugmentedEvent<ApiType>;684    };685    xcmpQueue: {686      /**687       * Bad XCM format used.688       **/689      BadFormat: AugmentedEvent<ApiType, [Option<H256>]>;690      /**691       * Bad XCM version used.692       **/693      BadVersion: AugmentedEvent<ApiType, [Option<H256>]>;694      /**695       * Some XCM failed.696       **/697      Fail: AugmentedEvent<ApiType, [Option<H256>, XcmV2TraitsError]>;698      /**699       * An XCM exceeded the individual message weight budget.700       **/701      OverweightEnqueued: AugmentedEvent<ApiType, [u32, u32, u64, u64]>;702      /**703       * An XCM from the overweight queue was executed with the given actual weight used.704       **/705      OverweightServiced: AugmentedEvent<ApiType, [u64, u64]>;706      /**707       * Some XCM was executed ok.708       **/709      Success: AugmentedEvent<ApiType, [Option<H256>]>;710      /**711       * An upward message was sent to the relay chain.712       **/713      UpwardMessageSent: AugmentedEvent<ApiType, [Option<H256>]>;714      /**715       * An HRMP message was sent to a sibling parachain.716       **/717      XcmpMessageSent: AugmentedEvent<ApiType, [Option<H256>]>;718      /**719       * Generic event720       **/721      [key: string]: AugmentedEvent<ApiType>;722    };723  } // AugmentedEvents724} // declare module