git.delta.rocks / unique-network / refs/commits / 9581cf6201ab

difftreelog

source

tests/src/interfaces/augment-api-events.ts33.2 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, PalletForeingAssetsAssetIds, PalletForeingAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, 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       * Amount pieces of token owned by `sender` was approved for `spender`.63       **/64      Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;65      /**66       * New collection was created67       **/68      CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;69      /**70       * New collection was destroyed71       **/72      CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;73      /**74       * The property has been deleted.75       **/76      CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;77      /**78       * The colletion property has been added or edited.79       **/80      CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;81      /**82       * New item was created.83       **/84      ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;85      /**86       * Collection item was burned.87       **/88      ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;89      /**90       * The token property permission of a collection has been set.91       **/92      PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;93      /**94       * The token property has been deleted.95       **/96      TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;97      /**98       * The token property has been added or edited.99       **/100      TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;101      /**102       * Item was transferred103       **/104      Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;105      /**106       * Generic event107       **/108      [key: string]: AugmentedEvent<ApiType>;109    };110    cumulusXcm: {111      /**112       * Downward message executed with the given outcome.113       * \[ id, outcome \]114       **/115      ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;116      /**117       * Downward message is invalid XCM.118       * \[ id \]119       **/120      InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;121      /**122       * Downward message is unsupported version of XCM.123       * \[ id \]124       **/125      UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;126      /**127       * Generic event128       **/129      [key: string]: AugmentedEvent<ApiType>;130    };131    dmpQueue: {132      /**133       * Downward message executed with the given outcome.134       **/135      ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;136      /**137       * Downward message is invalid XCM.138       **/139      InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;140      /**141       * Downward message is overweight and was placed in the overweight queue.142       **/143      OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64 }>;144      /**145       * Downward message from the overweight queue was executed.146       **/147      OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: u64], { overweightIndex: u64, weightUsed: u64 }>;148      /**149       * Downward message is unsupported version of XCM.150       **/151      UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;152      /**153       * The weight limit for handling downward messages was reached.154       **/155      WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64], { messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64 }>;156      /**157       * Generic event158       **/159      [key: string]: AugmentedEvent<ApiType>;160    };161    ethereum: {162      /**163       * An ethereum transaction was successfully executed. [from, to/contract_address, transaction_hash, exit_reason]164       **/165      Executed: AugmentedEvent<ApiType, [H160, H160, H256, EvmCoreErrorExitReason]>;166      /**167       * Generic event168       **/169      [key: string]: AugmentedEvent<ApiType>;170    };171    evm: {172      /**173       * A deposit has been made at a given address. \[sender, address, value\]174       **/175      BalanceDeposit: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;176      /**177       * A withdrawal has been made from a given address. \[sender, address, value\]178       **/179      BalanceWithdraw: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;180      /**181       * A contract has been created at given \[address\].182       **/183      Created: AugmentedEvent<ApiType, [H160]>;184      /**185       * A \[contract\] was attempted to be created, but the execution failed.186       **/187      CreatedFailed: AugmentedEvent<ApiType, [H160]>;188      /**189       * A \[contract\] has been executed successfully with states applied.190       **/191      Executed: AugmentedEvent<ApiType, [H160]>;192      /**193       * A \[contract\] has been executed with errors. States are reverted with only gas fees applied.194       **/195      ExecutedFailed: AugmentedEvent<ApiType, [H160]>;196      /**197       * Ethereum events from contracts.198       **/199      Log: AugmentedEvent<ApiType, [EthereumLog]>;200      /**201       * Generic event202       **/203      [key: string]: AugmentedEvent<ApiType>;204    };205    foreingAssets: {206      /**207       * The asset registered.208       **/209      AssetRegistered: AugmentedEvent<ApiType, [assetId: PalletForeingAssetsAssetIds, metadata: PalletForeingAssetsModuleAssetMetadata], { assetId: PalletForeingAssetsAssetIds, metadata: PalletForeingAssetsModuleAssetMetadata }>;210      /**211       * The asset updated.212       **/213      AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeingAssetsAssetIds, metadata: PalletForeingAssetsModuleAssetMetadata], { assetId: PalletForeingAssetsAssetIds, metadata: PalletForeingAssetsModuleAssetMetadata }>;214      /**215       * The foreign asset registered.216       **/217      ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeingAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeingAssetsModuleAssetMetadata }>;218      /**219       * The foreign asset updated.220       **/221      ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeingAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeingAssetsModuleAssetMetadata }>;222      /**223       * Generic event224       **/225      [key: string]: AugmentedEvent<ApiType>;226    };227    parachainSystem: {228      /**229       * Downward messages were processed using the given weight.230       **/231      DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: u64, dmqHead: H256], { weightUsed: u64, dmqHead: H256 }>;232      /**233       * Some downward messages have been received and will be processed.234       **/235      DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;236      /**237       * An upgrade has been authorized.238       **/239      UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;240      /**241       * The validation function was applied as of the contained relay chain block number.242       **/243      ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;244      /**245       * The relay-chain aborted the upgrade process.246       **/247      ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;248      /**249       * The validation function has been scheduled to apply.250       **/251      ValidationFunctionStored: AugmentedEvent<ApiType, []>;252      /**253       * Generic event254       **/255      [key: string]: AugmentedEvent<ApiType>;256    };257    polkadotXcm: {258      /**259       * Some assets have been placed in an asset trap.260       * 261       * \[ hash, origin, assets \]262       **/263      AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;264      /**265       * Execution of an XCM message was attempted.266       * 267       * \[ outcome \]268       **/269      Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;270      /**271       * Expected query response has been received but the origin location of the response does272       * not match that expected. The query remains registered for a later, valid, response to273       * be received and acted upon.274       * 275       * \[ origin location, id, expected location \]276       **/277      InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;278      /**279       * Expected query response has been received but the expected origin location placed in280       * storage by this runtime previously cannot be decoded. The query remains registered.281       * 282       * This is unexpected (since a location placed in storage in a previously executing283       * runtime should be readable prior to query timeout) and dangerous since the possibly284       * valid response will be dropped. Manual governance intervention is probably going to be285       * needed.286       * 287       * \[ origin location, id \]288       **/289      InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;290      /**291       * Query response has been received and query is removed. The registered notification has292       * been dispatched and executed successfully.293       * 294       * \[ id, pallet index, call index \]295       **/296      Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;297      /**298       * Query response has been received and query is removed. The dispatch was unable to be299       * decoded into a `Call`; this might be due to dispatch function having a signature which300       * is not `(origin, QueryId, Response)`.301       * 302       * \[ id, pallet index, call index \]303       **/304      NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;305      /**306       * Query response has been received and query is removed. There was a general error with307       * dispatching the notification call.308       * 309       * \[ id, pallet index, call index \]310       **/311      NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;312      /**313       * Query response has been received and query is removed. The registered notification could314       * not be dispatched because the dispatch weight is greater than the maximum weight315       * originally budgeted by this runtime for the query result.316       * 317       * \[ id, pallet index, call index, actual weight, max budgeted weight \]318       **/319      NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>;320      /**321       * A given location which had a version change subscription was dropped owing to an error322       * migrating the location to our new XCM format.323       * 324       * \[ location, query ID \]325       **/326      NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;327      /**328       * A given location which had a version change subscription was dropped owing to an error329       * sending the notification to it.330       * 331       * \[ location, query ID, error \]332       **/333      NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;334      /**335       * Query response has been received and is ready for taking with `take_response`. There is336       * no registered notification call.337       * 338       * \[ id, response \]339       **/340      ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;341      /**342       * Received query response has been read and removed.343       * 344       * \[ id \]345       **/346      ResponseTaken: AugmentedEvent<ApiType, [u64]>;347      /**348       * A XCM message was sent.349       * 350       * \[ origin, destination, message \]351       **/352      Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;353      /**354       * The supported version of a location has been changed. This might be through an355       * automatic notification or a manual intervention.356       * 357       * \[ location, XCM version \]358       **/359      SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;360      /**361       * Query response received which does not match a registered query. This may be because a362       * matching query was never registered, it may be because it is a duplicate response, or363       * because the query timed out.364       * 365       * \[ origin location, id \]366       **/367      UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;368      /**369       * An XCM version change notification message has been attempted to be sent.370       * 371       * \[ destination, result \]372       **/373      VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;374      /**375       * Generic event376       **/377      [key: string]: AugmentedEvent<ApiType>;378    };379    rmrkCore: {380      CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;381      CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;382      CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;383      IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;384      NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;385      NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;386      NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;387      NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;388      NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;389      PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;390      PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;391      ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;392      ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;393      ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;394      ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;395      /**396       * Generic event397       **/398      [key: string]: AugmentedEvent<ApiType>;399    };400    rmrkEquip: {401      BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;402      EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;403      /**404       * Generic event405       **/406      [key: string]: AugmentedEvent<ApiType>;407    };408    scheduler: {409      /**410       * The call for the provided hash was not found so the task has been aborted.411       **/412      CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;413      /**414       * Canceled some task.415       **/416      Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;417      /**418       * Dispatched some task.419       **/420      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> }>;421      /**422       * Scheduled some task.423       **/424      Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;425      /**426       * Generic event427       **/428      [key: string]: AugmentedEvent<ApiType>;429    };430    structure: {431      /**432       * Executed call on behalf of the token.433       **/434      Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;435      /**436       * Generic event437       **/438      [key: string]: AugmentedEvent<ApiType>;439    };440    sudo: {441      /**442       * The \[sudoer\] just switched identity; the old key is supplied if one existed.443       **/444      KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;445      /**446       * A sudo just took place. \[result\]447       **/448      Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;449      /**450       * A sudo just took place. \[result\]451       **/452      SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;453      /**454       * Generic event455       **/456      [key: string]: AugmentedEvent<ApiType>;457    };458    system: {459      /**460       * `:code` was updated.461       **/462      CodeUpdated: AugmentedEvent<ApiType, []>;463      /**464       * An extrinsic failed.465       **/466      ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;467      /**468       * An extrinsic completed successfully.469       **/470      ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;471      /**472       * An account was reaped.473       **/474      KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;475      /**476       * A new account was created.477       **/478      NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;479      /**480       * On on-chain remark happened.481       **/482      Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;483      /**484       * Generic event485       **/486      [key: string]: AugmentedEvent<ApiType>;487    };488    tokens: {489      /**490       * A balance was set by root.491       **/492      BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeingAssetsAssetIds, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeingAssetsAssetIds, who: AccountId32, free: u128, reserved: u128 }>;493      /**494       * Deposited some balance into an account495       **/496      Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeingAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeingAssetsAssetIds, who: AccountId32, amount: u128 }>;497      /**498       * An account was removed whose balance was non-zero but below499       * ExistentialDeposit, resulting in an outright loss.500       **/501      DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeingAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeingAssetsAssetIds, who: AccountId32, amount: u128 }>;502      /**503       * An account was created with some free balance.504       **/505      Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeingAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeingAssetsAssetIds, who: AccountId32, amount: u128 }>;506      /**507       * Some locked funds were unlocked508       **/509      LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeingAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeingAssetsAssetIds, who: AccountId32 }>;510      /**511       * Some funds are locked512       **/513      LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeingAssetsAssetIds, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeingAssetsAssetIds, who: AccountId32, amount: u128 }>;514      /**515       * Some balance was reserved (moved from free to reserved).516       **/517      Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeingAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeingAssetsAssetIds, who: AccountId32, amount: u128 }>;518      /**519       * Some reserved balance was repatriated (moved from reserved to520       * another account).521       **/522      ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeingAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeingAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;523      /**524       * Some balances were slashed (e.g. due to mis-behavior)525       **/526      Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeingAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeingAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;527      /**528       * The total issuance of an currency has been set529       **/530      TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeingAssetsAssetIds, amount: u128], { currencyId: PalletForeingAssetsAssetIds, amount: u128 }>;531      /**532       * Transfer succeeded.533       **/534      Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeingAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeingAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;535      /**536       * Some balance was unreserved (moved from reserved to free).537       **/538      Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeingAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeingAssetsAssetIds, who: AccountId32, amount: u128 }>;539      /**540       * Some balances were withdrawn (e.g. pay for transaction fee)541       **/542      Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeingAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeingAssetsAssetIds, who: AccountId32, amount: u128 }>;543      /**544       * Generic event545       **/546      [key: string]: AugmentedEvent<ApiType>;547    };548    transactionPayment: {549      /**550       * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,551       * has been paid by `who`.552       **/553      TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;554      /**555       * Generic event556       **/557      [key: string]: AugmentedEvent<ApiType>;558    };559    treasury: {560      /**561       * Some funds have been allocated.562       **/563      Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;564      /**565       * Some of our funds have been burnt.566       **/567      Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;568      /**569       * Some funds have been deposited.570       **/571      Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;572      /**573       * New proposal.574       **/575      Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;576      /**577       * A proposal was rejected; funds were slashed.578       **/579      Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;580      /**581       * Spending has finished; this is the amount that rolls over until next spend.582       **/583      Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;584      /**585       * A new spend proposal has been approved.586       **/587      SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;588      /**589       * We have ended a spend period and will now allocate funds.590       **/591      Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;592      /**593       * Generic event594       **/595      [key: string]: AugmentedEvent<ApiType>;596    };597    unique: {598      /**599       * Address was added to the allow list600       * 601       * # Arguments602       * * collection_id: ID of the affected collection.603       * * user: Address of the added account.604       **/605      AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;606      /**607       * Address was removed from the allow list608       * 609       * # Arguments610       * * collection_id: ID of the affected collection.611       * * user: Address of the removed account.612       **/613      AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;614      /**615       * Collection admin was added616       * 617       * # Arguments618       * * collection_id: ID of the affected collection.619       * * admin: Admin address.620       **/621      CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;622      /**623       * Collection admin was removed624       * 625       * # Arguments626       * * collection_id: ID of the affected collection.627       * * admin: Removed admin address.628       **/629      CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;630      /**631       * Collection limits were set632       * 633       * # Arguments634       * * collection_id: ID of the affected collection.635       **/636      CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;637      /**638       * Collection owned was changed639       * 640       * # Arguments641       * * collection_id: ID of the affected collection.642       * * owner: New owner address.643       **/644      CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;645      /**646       * Collection permissions were set647       * 648       * # Arguments649       * * collection_id: ID of the affected collection.650       **/651      CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;652      /**653       * Collection sponsor was removed654       * 655       * # Arguments656       * * collection_id: ID of the affected collection.657       **/658      CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;659      /**660       * Collection sponsor was set661       * 662       * # Arguments663       * * collection_id: ID of the affected collection.664       * * owner: New sponsor address.665       **/666      CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;667      /**668       * New sponsor was confirm669       * 670       * # Arguments671       * * collection_id: ID of the affected collection.672       * * sponsor: New sponsor address.673       **/674      SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;675      /**676       * Generic event677       **/678      [key: string]: AugmentedEvent<ApiType>;679    };680    vesting: {681      /**682       * Claimed vesting.683       **/684      Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;685      /**686       * Added new vesting schedule.687       **/688      VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;689      /**690       * Updated vesting schedules.691       **/692      VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;693      /**694       * Generic event695       **/696      [key: string]: AugmentedEvent<ApiType>;697    };698    xcmpQueue: {699      /**700       * Bad XCM format used.701       **/702      BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;703      /**704       * Bad XCM version used.705       **/706      BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;707      /**708       * Some XCM failed.709       **/710      Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64 }>;711      /**712       * An XCM exceeded the individual message weight budget.713       **/714      OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: u64], { sender: u32, sentAt: u32, index: u64, required: u64 }>;715      /**716       * An XCM from the overweight queue was executed with the given actual weight used.717       **/718      OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: u64], { index: u64, used: u64 }>;719      /**720       * Some XCM was executed ok.721       **/722      Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: u64], { messageHash: Option<H256>, weight: u64 }>;723      /**724       * An upward message was sent to the relay chain.725       **/726      UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;727      /**728       * An HRMP message was sent to a sibling parachain.729       **/730      XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;731      /**732       * Generic event733       **/734      [key: string]: AugmentedEvent<ApiType>;735    };736    xTokens: {737      /**738       * Transferred `MultiAsset` with fee.739       **/740      TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation], { sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation }>;741      /**742       * Generic event743       **/744      [key: string]: AugmentedEvent<ApiType>;745    };746  } // AugmentedEvents747} // declare module