123456import '@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 { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';11import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';1213export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;1415declare module '@polkadot/api-base/types/events' {16 interface AugmentedEvents<ApiType extends ApiTypes> {17 appPromotion: {18 192021222324 SetAdmin: AugmentedEvent<ApiType, [AccountId32]>;25 26272829303132 Stake: AugmentedEvent<ApiType, [AccountId32, u128]>;33 3435363738394041 StakingRecalculation: AugmentedEvent<ApiType, [AccountId32, u128, u128]>;42 43444546474849 Unstake: AugmentedEvent<ApiType, [AccountId32, u128]>;50 515253 [key: string]: AugmentedEvent<ApiType>;54 };55 balances: {56 575859 BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;60 616263 Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;64 65666768 DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;69 707172 Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;73 747576 Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;77 78798081 ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;82 838485 Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;86 878889 Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;90 919293 Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;94 959697 Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;98 99100101 [key: string]: AugmentedEvent<ApiType>;102 };103 common: {104 105106107 Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;108 109110111 CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;112 113114115 CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;116 117118119 CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;120 121122123 CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;124 125126127 ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;128 129130131 ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;132 133134135 PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;136 137138139 TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;140 141142143 TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;144 145146147 Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;148 149150151 [key: string]: AugmentedEvent<ApiType>;152 };153 cumulusXcm: {154 155156157158 ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;159 160161162163 InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;164 165166167168 UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;169 170171172 [key: string]: AugmentedEvent<ApiType>;173 };174 dmpQueue: {175 176177178 ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;179 180181182 InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;183 184185186 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: Weight }>;187 188189190 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: Weight], { overweightIndex: u64, weightUsed: Weight }>;191 192193194 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;195 196197198 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: Weight, requiredWeight: Weight], { messageId: U8aFixed, remainingWeight: Weight, requiredWeight: Weight }>;199 200201202 [key: string]: AugmentedEvent<ApiType>;203 };204 ethereum: {205 206207208 Executed: AugmentedEvent<ApiType, [H160, H160, H256, EvmCoreErrorExitReason]>;209 210211212 [key: string]: AugmentedEvent<ApiType>;213 };214 evm: {215 216217218 BalanceDeposit: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;219 220221222 BalanceWithdraw: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;223 224225226 Created: AugmentedEvent<ApiType, [H160]>;227 228229230 CreatedFailed: AugmentedEvent<ApiType, [H160]>;231 232233234 Executed: AugmentedEvent<ApiType, [H160]>;235 236237238 ExecutedFailed: AugmentedEvent<ApiType, [H160]>;239 240241242 Log: AugmentedEvent<ApiType, [EthereumLog]>;243 244245246 [key: string]: AugmentedEvent<ApiType>;247 };248 evmContractHelpers: {249 250251252 ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;253 254255256 ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;257 258259260 ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;261 262263264 [key: string]: AugmentedEvent<ApiType>;265 };266 foreignAssets: {267 268269270 AssetRegistered: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;271 272273274 AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;275 276277278 ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;279 280281282 ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;283 284285286 [key: string]: AugmentedEvent<ApiType>;287 };288 parachainSystem: {289 290291292 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: Weight, dmqHead: H256], { weightUsed: Weight, dmqHead: H256 }>;293 294295296 DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;297 298299300 UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;301 302303304 ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;305 306307308 ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;309 310311312 ValidationFunctionStored: AugmentedEvent<ApiType, []>;313 314315316 [key: string]: AugmentedEvent<ApiType>;317 };318 polkadotXcm: {319 320321322323324 AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;325 326327328329330 Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;331 332333334335336337338 InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;339 340341342343344345346347348349350 InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;351 352353354355356357 Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;358 359360361362363364365 NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;366 367368369370371372 NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;373 374375376377378379380 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, Weight, Weight]>;381 382383384385386387 NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;388 389390391392393394 NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;395 396397398399400401 ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;402 403404405406407 ResponseTaken: AugmentedEvent<ApiType, [u64]>;408 409410411412413 Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;414 415416417418419420 SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;421 422423424425426427428 UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;429 430431432433434 VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;435 436437438 [key: string]: AugmentedEvent<ApiType>;439 };440 rmrkCore: {441 CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;442 CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;443 CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;444 IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;445 NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;446 NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;447 NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;448 NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;449 NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;450 PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;451 PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;452 ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;453 ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;454 ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;455 ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;456 457458459 [key: string]: AugmentedEvent<ApiType>;460 };461 rmrkEquip: {462 BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;463 EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;464 465466467 [key: string]: AugmentedEvent<ApiType>;468 };469 structure: {470 471472473 Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;474 475476477 [key: string]: AugmentedEvent<ApiType>;478 };479 sudo: {480 481482483 KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;484 485486487 Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;488 489490491 SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;492 493494495 [key: string]: AugmentedEvent<ApiType>;496 };497 system: {498 499500501 CodeUpdated: AugmentedEvent<ApiType, []>;502 503504505 ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;506 507508509 ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;510 511512513 KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;514 515516517 NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;518 519520521 Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;522 523524525 [key: string]: AugmentedEvent<ApiType>;526 };527 tokens: {528 529530531 BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128 }>;532 533534535 Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;536 537538539540 DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;541 542543544 Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;545 546547548 LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32 }>;549 550551552 LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;553 554555556 Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;557 558559560561 ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;562 563564565 Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;566 567568569 TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, amount: u128], { currencyId: PalletForeignAssetsAssetIds, amount: u128 }>;570 571572573 Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;574 575576577 Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;578 579580581 Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;582 583584585 [key: string]: AugmentedEvent<ApiType>;586 };587 transactionPayment: {588 589590591592 TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;593 594595596 [key: string]: AugmentedEvent<ApiType>;597 };598 treasury: {599 600601602 Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;603 604605606 Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;607 608609610 Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;611 612613614 Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;615 616617618 Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;619 620621622 Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;623 624625626 SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;627 628629630 Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;631 632633634 [key: string]: AugmentedEvent<ApiType>;635 };636 unique: {637 638639640641642643644 AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;645 646647648649650651652 AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;653 654655656657658659660 CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;661 662663664665666667668 CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;669 670671672673674675 CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;676 677678679680681682683 CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;684 685686687688689690 CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;691 692693694695696697 CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;698 699700701702703704705 CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;706 707708709710711712713 SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;714 715716717 [key: string]: AugmentedEvent<ApiType>;718 };719 vesting: {720 721722723 Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;724 725726727 VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;728 729730731 VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;732 733734735 [key: string]: AugmentedEvent<ApiType>;736 };737 xcmpQueue: {738 739740741 BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;742 743744745 BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;746 747748749 Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: Weight }>;750 751752753 OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: Weight], { sender: u32, sentAt: u32, index: u64, required: Weight }>;754 755756757 OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: Weight], { index: u64, used: Weight }>;758 759760761 Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: Weight], { messageHash: Option<H256>, weight: Weight }>;762 763764765 UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;766 767768769 XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;770 771772773 [key: string]: AugmentedEvent<ApiType>;774 };775 xTokens: {776 777778779 TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation], { sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation }>;780 781782783 [key: string]: AugmentedEvent<ApiType>;784 };785 } 786}