1234import 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, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiLocation, 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 141516 BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;17 181920 Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;21 22232425 DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;26 272829 Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;30 313233 Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;34 35363738 ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;39 404142 Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;43 444546 Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;47 484950 Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;51 525354 Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;55 565758 [key: string]: AugmentedEvent<ApiType>;59 };60 common: {61 626364 Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;65 666768 CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;69 707172 CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;73 747576 CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;77 787980 CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;81 828384 ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;85 868788 ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;89 909192 PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;93 949596 TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;97 9899100 TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;101 102103104 Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;105 106107108 [key: string]: AugmentedEvent<ApiType>;109 };110 cumulusXcm: {111 112113114115 ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;116 117118119120 InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;121 122123124125 UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;126 127128129 [key: string]: AugmentedEvent<ApiType>;130 };131 dmpQueue: {132 133134135 ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;136 137138139 InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;140 141142143 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64 }>;144 145146147 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: u64], { overweightIndex: u64, weightUsed: u64 }>;148 149150151 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;152 153154155 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64], { messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64 }>;156 157158159 [key: string]: AugmentedEvent<ApiType>;160 };161 ethereum: {162 163164165 Executed: AugmentedEvent<ApiType, [H160, H160, H256, EvmCoreErrorExitReason]>;166 167168169 [key: string]: AugmentedEvent<ApiType>;170 };171 evm: {172 173174175 BalanceDeposit: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;176 177178179 BalanceWithdraw: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;180 181182183 Created: AugmentedEvent<ApiType, [H160]>;184 185186187 CreatedFailed: AugmentedEvent<ApiType, [H160]>;188 189190191 Executed: AugmentedEvent<ApiType, [H160]>;192 193194195 ExecutedFailed: AugmentedEvent<ApiType, [H160]>;196 197198199 Log: AugmentedEvent<ApiType, [EthereumLog]>;200 201202203 [key: string]: AugmentedEvent<ApiType>;204 };205 parachainSystem: {206 207208209 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: u64, dmqHead: H256], { weightUsed: u64, dmqHead: H256 }>;210 211212213 DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;214 215216217 UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;218 219220221 ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;222 223224225 ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;226 227228229 ValidationFunctionStored: AugmentedEvent<ApiType, []>;230 231232233 [key: string]: AugmentedEvent<ApiType>;234 };235 polkadotXcm: {236 237238239240241 AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;242 243244245246247 Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;248 249250251252253254255 InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;256 257258259260261262263264265266267 InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;268 269270271272273274 Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;275 276277278279280281282 NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;283 284285286287288289 NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;290 291292293294295296297 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>;298 299300301302303304 NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;305 306307308309310311 NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;312 313314315316317318 ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;319 320321322323324 ResponseTaken: AugmentedEvent<ApiType, [u64]>;325 326327328329330 Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;331 332333334335336337 SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;338 339340341342343344345 UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;346 347348349350351 VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;352 353354355 [key: string]: AugmentedEvent<ApiType>;356 };357 rmrkCore: {358 CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;359 CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;360 CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;361 IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;362 NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;363 NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;364 NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;365 NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;366 NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;367 PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;368 PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;369 ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;370 ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;371 ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;372 ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;373 374375376 [key: string]: AugmentedEvent<ApiType>;377 };378 rmrkEquip: {379 BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;380 EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;381 382383384 [key: string]: AugmentedEvent<ApiType>;385 };386 scheduler: {387 388389390 CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;391 392393394 Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;395 396397398 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> }>;399 400401402 Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;403 404405406 [key: string]: AugmentedEvent<ApiType>;407 };408 structure: {409 410411412 Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;413 414415416 [key: string]: AugmentedEvent<ApiType>;417 };418 sudo: {419 420421422 KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;423 424425426 Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;427 428429430 SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;431 432433434 [key: string]: AugmentedEvent<ApiType>;435 };436 system: {437 438439440 CodeUpdated: AugmentedEvent<ApiType, []>;441 442443444 ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;445 446447448 ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;449 450451452 KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;453 454455456 NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;457 458459460 Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;461 462463464 [key: string]: AugmentedEvent<ApiType>;465 };466 treasury: {467 468469470 Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;471 472473474 Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;475 476477478 Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;479 480481482 Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;483 484485486 Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;487 488489490 Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;491 492493494 Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;495 496497498 [key: string]: AugmentedEvent<ApiType>;499 };500 unique: {501 502503504505506507508 AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;509 510511512513514515516 AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;517 518519520521522523524 CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;525 526527528529530531532 CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;533 534535536537538539 CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;540 541542543544545546547 CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;548 549550551552553554 CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;555 556557558559560561 CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;562 563564565566567568569 CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;570 571572573574575576577 SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;578 579580581 [key: string]: AugmentedEvent<ApiType>;582 };583 vesting: {584 585586587 Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;588 589590591 VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;592 593594595 VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;596 597598599 [key: string]: AugmentedEvent<ApiType>;600 };601 xcmpQueue: {602 603604605 BadFormat: AugmentedEvent<ApiType, [Option<H256>]>;606 607608609 BadVersion: AugmentedEvent<ApiType, [Option<H256>]>;610 611612613 Fail: AugmentedEvent<ApiType, [Option<H256>, XcmV2TraitsError]>;614 615616617 OverweightEnqueued: AugmentedEvent<ApiType, [u32, u32, u64, u64]>;618 619620621 OverweightServiced: AugmentedEvent<ApiType, [u64, u64]>;622 623624625 Success: AugmentedEvent<ApiType, [Option<H256>]>;626 627628629 UpwardMessageSent: AugmentedEvent<ApiType, [Option<H256>]>;630 631632633 XcmpMessageSent: AugmentedEvent<ApiType, [Option<H256>]>;634 635636637 [key: string]: AugmentedEvent<ApiType>;638 };639 } 640}