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 { ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';12import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiLocation, 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 StakingRecalculation: AugmentedEvent<ApiType, [AccountId32, u128, u128]>;20 212223 [key: string]: AugmentedEvent<ApiType>;24 };25 balances: {26 272829 BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;30 313233 Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;34 35363738 DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;39 404142 Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;43 444546 Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;47 48495051 ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;52 535455 Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;56 575859 Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;60 616263 Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;64 656667 Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;68 697071 [key: string]: AugmentedEvent<ApiType>;72 };73 common: {74 757677 Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;78 798081 CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;82 838485 CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;86 878889 CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;90 919293 CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;94 959697 ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;98 99100101 ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;102 103104105 PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;106 107108109 TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;110 111112113 TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;114 115116117 Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;118 119120121 [key: string]: AugmentedEvent<ApiType>;122 };123 cumulusXcm: {124 125126127128 ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;129 130131132133 InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;134 135136137138 UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;139 140141142 [key: string]: AugmentedEvent<ApiType>;143 };144 dmpQueue: {145 146147148 ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;149 150151152 InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;153 154155156 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64 }>;157 158159160 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: u64], { overweightIndex: u64, weightUsed: u64 }>;161 162163164 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;165 166167168 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64], { messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64 }>;169 170171172 [key: string]: AugmentedEvent<ApiType>;173 };174 ethereum: {175 176177178 Executed: AugmentedEvent<ApiType, [H160, H160, H256, EvmCoreErrorExitReason]>;179 180181182 [key: string]: AugmentedEvent<ApiType>;183 };184 evm: {185 186187188 BalanceDeposit: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;189 190191192 BalanceWithdraw: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;193 194195196 Created: AugmentedEvent<ApiType, [H160]>;197 198199200 CreatedFailed: AugmentedEvent<ApiType, [H160]>;201 202203204 Executed: AugmentedEvent<ApiType, [H160]>;205 206207208 ExecutedFailed: AugmentedEvent<ApiType, [H160]>;209 210211212 Log: AugmentedEvent<ApiType, [EthereumLog]>;213 214215216 [key: string]: AugmentedEvent<ApiType>;217 };218 parachainSystem: {219 220221222 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: u64, dmqHead: H256], { weightUsed: u64, dmqHead: H256 }>;223 224225226 DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;227 228229230 UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;231 232233234 ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;235 236237238 ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;239 240241242 ValidationFunctionStored: AugmentedEvent<ApiType, []>;243 244245246 [key: string]: AugmentedEvent<ApiType>;247 };248 polkadotXcm: {249 250251252253254 AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;255 256257258259260 Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;261 262263264265266267268 InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;269 270271272273274275276277278279280 InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;281 282283284285286287 Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;288 289290291292293294295 NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;296 297298299300301302 NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;303 304305306307308309310 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>;311 312313314315316317 NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;318 319320321322323324 NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;325 326327328329330331 ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;332 333334335336337 ResponseTaken: AugmentedEvent<ApiType, [u64]>;338 339340341342343 Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;344 345346347348349350 SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;351 352353354355356357358 UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;359 360361362363364 VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;365 366367368 [key: string]: AugmentedEvent<ApiType>;369 };370 rmrkCore: {371 CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;372 CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;373 CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;374 IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;375 NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;376 NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;377 NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;378 NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;379 NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;380 PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;381 PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;382 ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;383 ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;384 ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;385 ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;386 387388389 [key: string]: AugmentedEvent<ApiType>;390 };391 rmrkEquip: {392 BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;393 EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;394 395396397 [key: string]: AugmentedEvent<ApiType>;398 };399 scheduler: {400 401402403 CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;404 405406407 Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;408 409410411 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> }>;412 413414415 Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;416 417418419 [key: string]: AugmentedEvent<ApiType>;420 };421 structure: {422 423424425 Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;426 427428429 [key: string]: AugmentedEvent<ApiType>;430 };431 sudo: {432 433434435 KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;436 437438439 Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;440 441442443 SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;444 445446447 [key: string]: AugmentedEvent<ApiType>;448 };449 system: {450 451452453 CodeUpdated: AugmentedEvent<ApiType, []>;454 455456457 ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;458 459460461 ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;462 463464465 KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;466 467468469 NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;470 471472473 Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;474 475476477 [key: string]: AugmentedEvent<ApiType>;478 };479 transactionPayment: {480 481482483484 TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;485 486487488 [key: string]: AugmentedEvent<ApiType>;489 };490 treasury: {491 492493494 Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;495 496497498 Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;499 500501502 Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;503 504505506 Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;507 508509510 Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;511 512513514 Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;515 516517518 SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;519 520521522 Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;523 524525526 [key: string]: AugmentedEvent<ApiType>;527 };528 unique: {529 530531532533534535536 AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;537 538539540541542543544 AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;545 546547548549550551552 CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;553 554555556557558559560 CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;561 562563564565566567 CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;568 569570571572573574575 CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;576 577578579580581582 CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;583 584585586587588589 CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;590 591592593594595596597 CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;598 599600601602603604605 SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;606 607608609 [key: string]: AugmentedEvent<ApiType>;610 };611 vesting: {612 613614615 Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;616 617618619 VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;620 621622623 VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;624 625626627 [key: string]: AugmentedEvent<ApiType>;628 };629 xcmpQueue: {630 631632633 BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;634 635636637 BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;638 639640641 Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64 }>;642 643644645 OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: u64], { sender: u32, sentAt: u32, index: u64, required: u64 }>;646 647648649 OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: u64], { index: u64, used: u64 }>;650 651652653 Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: u64], { messageHash: Option<H256>, weight: u64 }>;654 655656657 UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;658 659660661 XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;662 663664665 [key: string]: AugmentedEvent<ApiType>;666 };667 } 668}