123456import '@polkadot/api-base/types/events';78import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';9import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';10import type { ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';12import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, 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 202122232425 SetAdmin: AugmentedEvent<ApiType, [AccountId32]>;26 27282930313233 Stake: AugmentedEvent<ApiType, [AccountId32, u128]>;34 3536373839404142 StakingRecalculation: AugmentedEvent<ApiType, [AccountId32, u128, u128]>;43 44454647484950 Unstake: AugmentedEvent<ApiType, [AccountId32, u128]>;51 525354 [key: string]: AugmentedEvent<ApiType>;55 };56 balances: {57 585960 BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;61 626364 Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;65 66676869 DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;70 717273 Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;74 757677 Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;78 79808182 ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;83 848586 Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;87 888990 Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;91 929394 Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;95 969798 Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;99 100101102 [key: string]: AugmentedEvent<ApiType>;103 };104 common: {105 106107108 Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;109 110111112 CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;113 114115116 CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;117 118119120 CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;121 122123124 CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;125 126127128 ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;129 130131132 ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;133 134135136 PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;137 138139140 TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;141 142143144 TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;145 146147148 Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;149 150151152 [key: string]: AugmentedEvent<ApiType>;153 };154 cumulusXcm: {155 156157158159 ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;160 161162163164 InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;165 166167168169 UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;170 171172173 [key: string]: AugmentedEvent<ApiType>;174 };175 dmpQueue: {176 177178179 ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;180 181182183 InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;184 185186187 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: Weight }>;188 189190191 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: Weight], { overweightIndex: u64, weightUsed: Weight }>;192 193194195 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;196 197198199 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: Weight, requiredWeight: Weight], { messageId: U8aFixed, remainingWeight: Weight, requiredWeight: Weight }>;200 201202203 [key: string]: AugmentedEvent<ApiType>;204 };205 ethereum: {206 207208209 Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason }>;210 211212213 [key: string]: AugmentedEvent<ApiType>;214 };215 evm: {216 217218219 Created: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;220 221222223 CreatedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;224 225226227 Executed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;228 229230231 ExecutedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;232 233234235 Log: AugmentedEvent<ApiType, [log: EthereumLog], { log: EthereumLog }>;236 237238239 [key: string]: AugmentedEvent<ApiType>;240 };241 evmContractHelpers: {242 243244245 ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;246 247248249 ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;250 251252253 ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;254 255256257 [key: string]: AugmentedEvent<ApiType>;258 };259 foreignAssets: {260 261262263 AssetRegistered: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;264 265266267 AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;268 269270271 ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;272 273274275 ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;276 277278279 [key: string]: AugmentedEvent<ApiType>;280 };281 maintenance: {282 MaintenanceDisabled: AugmentedEvent<ApiType, []>;283 MaintenanceEnabled: AugmentedEvent<ApiType, []>;284 285286287 [key: string]: AugmentedEvent<ApiType>;288 };289 parachainSystem: {290 291292293 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: Weight, dmqHead: H256], { weightUsed: Weight, dmqHead: H256 }>;294 295296297 DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;298 299300301 UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;302 303304305 ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;306 307308309 ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;310 311312313 ValidationFunctionStored: AugmentedEvent<ApiType, []>;314 315316317 [key: string]: AugmentedEvent<ApiType>;318 };319 polkadotXcm: {320 321322323324325 AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;326 327328329330331 Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;332 333334335336337338339 InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;340 341342343344345346347348349350351 InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;352 353354355356357358 Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;359 360361362363364365366 NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;367 368369370371372373 NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;374 375376377378379380381 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, Weight, Weight]>;382 383384385386387388 NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;389 390391392393394395 NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;396 397398399400401402 ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;403 404405406407408 ResponseTaken: AugmentedEvent<ApiType, [u64]>;409 410411412413414 Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;415 416417418419420421 SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;422 423424425426427428429 UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;430 431432433434435 VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;436 437438439 [key: string]: AugmentedEvent<ApiType>;440 };441 rmrkCore: {442 CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;443 CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;444 CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;445 IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;446 NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;447 NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;448 NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;449 NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;450 NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;451 PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;452 PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;453 ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;454 ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;455 ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;456 ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;457 458459460 [key: string]: AugmentedEvent<ApiType>;461 };462 rmrkEquip: {463 BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;464 EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;465 466467468 [key: string]: AugmentedEvent<ApiType>;469 };470 scheduler: {471 472473474 CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;475 476477478 Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;479 480481482 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> }>;483 484485486 PriorityChanged: AugmentedEvent<ApiType, [when: u32, index: u32, priority: u8], { when: u32, index: u32, priority: u8 }>;487 488489490 Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;491 492493494 [key: string]: AugmentedEvent<ApiType>;495 };496 structure: {497 498499500 Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;501 502503504 [key: string]: AugmentedEvent<ApiType>;505 };506 sudo: {507 508509510 KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;511 512513514 Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;515 516517518 SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;519 520521522 [key: string]: AugmentedEvent<ApiType>;523 };524 system: {525 526527528 CodeUpdated: AugmentedEvent<ApiType, []>;529 530531532 ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;533 534535536 ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;537 538539540 KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;541 542543544 NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;545 546547548 Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;549 550551552 [key: string]: AugmentedEvent<ApiType>;553 };554 testUtils: {555 ShouldRollback: AugmentedEvent<ApiType, []>;556 ValueIsSet: AugmentedEvent<ApiType, []>;557 558559560 [key: string]: AugmentedEvent<ApiType>;561 };562 tokens: {563 564565566 BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128 }>;567 568569570 Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;571 572573574575 DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;576 577578579 Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;580 581582583 LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32 }>;584 585586587 LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;588 589590591 Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;592 593594595596 ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;597 598599600 Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;601 602603604 TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, amount: u128], { currencyId: PalletForeignAssetsAssetIds, amount: u128 }>;605 606607608 Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;609 610611612 Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;613 614615616 Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;617 618619620 [key: string]: AugmentedEvent<ApiType>;621 };622 transactionPayment: {623 624625626627 TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;628 629630631 [key: string]: AugmentedEvent<ApiType>;632 };633 treasury: {634 635636637 Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;638 639640641 Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;642 643644645 Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;646 647648649 Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;650 651652653 Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;654 655656657 Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;658 659660661 SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;662 663664665 Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;666 667668669 [key: string]: AugmentedEvent<ApiType>;670 };671 unique: {672 673674675676677678679 AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;680 681682683684685686687 AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;688 689690691692693694695 CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;696 697698699700701702703 CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;704 705706707708709710 CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;711 712713714715716717718 CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;719 720721722723724725 CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;726 727728729730731732 CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;733 734735736737738739740 CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;741 742743744745746747748 SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;749 750751752 [key: string]: AugmentedEvent<ApiType>;753 };754 vesting: {755 756757758 Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;759 760761762 VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;763 764765766 VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;767 768769770 [key: string]: AugmentedEvent<ApiType>;771 };772 xcmpQueue: {773 774775776 BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;777 778779780 BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;781 782783784 Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: Weight }>;785 786787788 OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: Weight], { sender: u32, sentAt: u32, index: u64, required: Weight }>;789 790791792 OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: Weight], { index: u64, used: Weight }>;793 794795796 Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: Weight], { messageHash: Option<H256>, weight: Weight }>;797 798799800 UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;801 802803804 XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;805 806807808 [key: string]: AugmentedEvent<ApiType>;809 };810 xTokens: {811 812813814 TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation], { sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation }>;815 816817818 [key: string]: AugmentedEvent<ApiType>;819 };820 } 821}