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 { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';11import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, SpWeightsWeightV2Weight, 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 AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;108 109110111 AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;112 113114115 Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;116 117118119 ApprovedForAll: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;120 121122123 CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;124 125126127 CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;128 129130131 CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;132 133134135 CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;136 137138139 CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;140 141142143 CollectionOwnerChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;144 145146147 CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;148 149150151 CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;152 153154155 CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;156 157158159 CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;160 161162163 CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;164 165166167 ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;168 169170171 ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;172 173174175 PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;176 177178179 SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;180 181182183 TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;184 185186187 TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;188 189190191 Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;192 193194195 [key: string]: AugmentedEvent<ApiType>;196 };197 configuration: {198 NewCollatorKickThreshold: AugmentedEvent<ApiType, [lengthInBlocks: Option<u32>], { lengthInBlocks: Option<u32> }>;199 NewCollatorLicenseBond: AugmentedEvent<ApiType, [bondCost: Option<u128>], { bondCost: Option<u128> }>;200 NewDesiredCollators: AugmentedEvent<ApiType, [desiredCollators: Option<u32>], { desiredCollators: Option<u32> }>;201 202203204 [key: string]: AugmentedEvent<ApiType>;205 };206 cumulusXcm: {207 208209210211 ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;212 213214215216 InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;217 218219220221 UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;222 223224225 [key: string]: AugmentedEvent<ApiType>;226 };227 dmpQueue: {228 229230231 ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;232 233234235 InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;236 237238239 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight }>;240 241242243 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight], { overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight }>;244 245246247 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;248 249250251 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight }>;252 253254255 [key: string]: AugmentedEvent<ApiType>;256 };257 ethereum: {258 259260261 Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason }>;262 263264265 [key: string]: AugmentedEvent<ApiType>;266 };267 evm: {268 269270271 Created: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;272 273274275 CreatedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;276 277278279 Executed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;280 281282283 ExecutedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;284 285286287 Log: AugmentedEvent<ApiType, [log: EthereumLog], { log: EthereumLog }>;288 289290291 [key: string]: AugmentedEvent<ApiType>;292 };293 evmContractHelpers: {294 295296297 ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;298 299300301 ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;302 303304305 ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;306 307308309 [key: string]: AugmentedEvent<ApiType>;310 };311 evmMigration: {312 313314315 TestEvent: AugmentedEvent<ApiType, []>;316 317318319 [key: string]: AugmentedEvent<ApiType>;320 };321 foreignAssets: {322 323324325 AssetRegistered: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;326 327328329 AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;330 331332333 ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;334 335336337 ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;338 339340341 [key: string]: AugmentedEvent<ApiType>;342 };343 maintenance: {344 MaintenanceDisabled: AugmentedEvent<ApiType, []>;345 MaintenanceEnabled: AugmentedEvent<ApiType, []>;346 347348349 [key: string]: AugmentedEvent<ApiType>;350 };351 parachainSystem: {352 353354355 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: SpWeightsWeightV2Weight, dmqHead: H256], { weightUsed: SpWeightsWeightV2Weight, dmqHead: H256 }>;356 357358359 DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;360 361362363 UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;364 365366367 ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;368 369370371 ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;372 373374375 ValidationFunctionStored: AugmentedEvent<ApiType, []>;376 377378379 [key: string]: AugmentedEvent<ApiType>;380 };381 polkadotXcm: {382 383384385386387 AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;388 389390391392393 AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;394 395396397398399 Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;400 401402403404405406407 InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;408 409410411412413414415416417418419 InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;420 421422423424425426 Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;427 428429430431432433434 NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;435 436437438439440441 NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;442 443444445446447448449 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;450 451452453454455456 NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;457 458459460461462463 NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;464 465466467468469470 ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;471 472473474475476 ResponseTaken: AugmentedEvent<ApiType, [u64]>;477 478479480481482 Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;483 484485486487488489 SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;490 491492493494495496497 UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;498 499500501502503 VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;504 505506507 [key: string]: AugmentedEvent<ApiType>;508 };509 rmrkCore: {510 CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;511 CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;512 CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;513 IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;514 NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;515 NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;516 NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;517 NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;518 NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;519 PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;520 PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;521 ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;522 ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;523 ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;524 ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;525 526527528 [key: string]: AugmentedEvent<ApiType>;529 };530 rmrkEquip: {531 BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;532 EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;533 534535536 [key: string]: AugmentedEvent<ApiType>;537 };538 structure: {539 540541542 Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;543 544545546 [key: string]: AugmentedEvent<ApiType>;547 };548 sudo: {549 550551552 KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;553 554555556 Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;557 558559560 SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;561 562563564 [key: string]: AugmentedEvent<ApiType>;565 };566 system: {567 568569570 CodeUpdated: AugmentedEvent<ApiType, []>;571 572573574 ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;575 576577578 ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;579 580581582 KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;583 584585586 NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;587 588589590 Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;591 592593594 [key: string]: AugmentedEvent<ApiType>;595 };596 testUtils: {597 BatchCompleted: AugmentedEvent<ApiType, []>;598 ShouldRollback: AugmentedEvent<ApiType, []>;599 ValueIsSet: AugmentedEvent<ApiType, []>;600 601602603 [key: string]: AugmentedEvent<ApiType>;604 };605 tokens: {606 607608609 BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128 }>;610 611612613 Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;614 615616617618 DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;619 620621622 Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;623 624625626 LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32 }>;627 628629630 LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;631 632633634 Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;635 636637638639 ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;640 641642643 Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;644 645646647 TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, amount: u128], { currencyId: PalletForeignAssetsAssetIds, amount: u128 }>;648 649650651 Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;652 653654655 Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;656 657658659 Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;660 661662663 [key: string]: AugmentedEvent<ApiType>;664 };665 transactionPayment: {666 667668669670 TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;671 672673674 [key: string]: AugmentedEvent<ApiType>;675 };676 treasury: {677 678679680 Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;681 682683684 Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;685 686687688 Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;689 690691692 Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;693 694695696 Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;697 698699700 Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;701 702703704 SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;705 706707708 Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;709 710711712 [key: string]: AugmentedEvent<ApiType>;713 };714 vesting: {715 716717718 Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;719 720721722 VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;723 724725726 VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;727 728729730 [key: string]: AugmentedEvent<ApiType>;731 };732 xcmpQueue: {733 734735736 BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;737 738739740 BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;741 742743744 Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight }>;745 746747748 OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight], { sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight }>;749 750751752 OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: SpWeightsWeightV2Weight], { index: u64, used: SpWeightsWeightV2Weight }>;753 754755756 Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, weight: SpWeightsWeightV2Weight }>;757 758759760 UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;761 762763764 XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;765 766767768 [key: string]: AugmentedEvent<ApiType>;769 };770 xTokens: {771 772773774 TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation], { sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation }>;775 776777778 [key: string]: AugmentedEvent<ApiType>;779 };780 } 781}