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 6263646566676869707172 Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;73 747576777879808182 CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;83 84858687888990 CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;91 9293949596979899 CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;100 101102103104105106107108 CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;109 110111112113114115116117118119 ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;120 121122123124125126127128129130 ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;131 132133134135136137138139 PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;140 141142143144145146147148149 TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;150 151152153154155156157158159 TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;160 161162163164165166167168169170171 Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;172 173174175 [key: string]: AugmentedEvent<ApiType>;176 };177 cumulusXcm: {178 179180181182 ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;183 184185186187 InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;188 189190191192 UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;193 194195196 [key: string]: AugmentedEvent<ApiType>;197 };198 dmpQueue: {199 200201202 ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;203 204205206 InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;207 208209210 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64 }>;211 212213214 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: u64], { overweightIndex: u64, weightUsed: u64 }>;215 216217218 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;219 220221222 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64], { messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64 }>;223 224225226 [key: string]: AugmentedEvent<ApiType>;227 };228 ethereum: {229 230231232 Executed: AugmentedEvent<ApiType, [H160, H160, H256, EvmCoreErrorExitReason]>;233 234235236 [key: string]: AugmentedEvent<ApiType>;237 };238 evm: {239 240241242 BalanceDeposit: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;243 244245246 BalanceWithdraw: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;247 248249250 Created: AugmentedEvent<ApiType, [H160]>;251 252253254 CreatedFailed: AugmentedEvent<ApiType, [H160]>;255 256257258 Executed: AugmentedEvent<ApiType, [H160]>;259 260261262 ExecutedFailed: AugmentedEvent<ApiType, [H160]>;263 264265266 Log: AugmentedEvent<ApiType, [EthereumLog]>;267 268269270 [key: string]: AugmentedEvent<ApiType>;271 };272 parachainSystem: {273 274275276 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: u64, dmqHead: H256], { weightUsed: u64, dmqHead: H256 }>;277 278279280 DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;281 282283284 UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;285 286287288 ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;289 290291292 ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;293 294295296 ValidationFunctionStored: AugmentedEvent<ApiType, []>;297 298299300 [key: string]: AugmentedEvent<ApiType>;301 };302 polkadotXcm: {303 304305306307308 AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;309 310311312313314 Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;315 316317318319320321322 InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;323 324325326327328329330331332333334 InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;335 336337338339340341 Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;342 343344345346347348349 NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;350 351352353354355356 NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;357 358359360361362363364 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>;365 366367368369370371 NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;372 373374375376377378 NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;379 380381382383384385 ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;386 387388389390391 ResponseTaken: AugmentedEvent<ApiType, [u64]>;392 393394395396397 Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;398 399400401402403404 SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;405 406407408409410411412 UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;413 414415416417418 VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;419 420421422 [key: string]: AugmentedEvent<ApiType>;423 };424 rmrkCore: {425 CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;426 CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;427 CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;428 IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;429 NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;430 NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;431 NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;432 NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;433 NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;434 PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;435 PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;436 ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;437 ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;438 ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;439 ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;440 441442443 [key: string]: AugmentedEvent<ApiType>;444 };445 rmrkEquip: {446 BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;447 EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;448 449450451 [key: string]: AugmentedEvent<ApiType>;452 };453 scheduler: {454 455456457 CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;458 459460461 Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;462 463464465 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> }>;466 467468469 Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;470 471472473 [key: string]: AugmentedEvent<ApiType>;474 };475 structure: {476 477478479 Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;480 481482483 [key: string]: AugmentedEvent<ApiType>;484 };485 sudo: {486 487488489 KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;490 491492493 Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;494 495496497 SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;498 499500501 [key: string]: AugmentedEvent<ApiType>;502 };503 system: {504 505506507 CodeUpdated: AugmentedEvent<ApiType, []>;508 509510511 ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;512 513514515 ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;516 517518519 KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;520 521522523 NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;524 525526527 Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;528 529530531 [key: string]: AugmentedEvent<ApiType>;532 };533 treasury: {534 535536537 Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;538 539540541 Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;542 543544545 Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;546 547548549 Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;550 551552553 Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;554 555556557 Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;558 559560561 Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;562 563564565 [key: string]: AugmentedEvent<ApiType>;566 };567 unique: {568 569570571572573574575576577 AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;578 579580581582583584585586587 AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;588 589590591592593594595596597 CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;598 599600601602603604605606607 CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;608 609610611612613614615 CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;616 617618619620621622623624625 CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;626 627628629630631632633 CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;634 635636637638639640641 CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;642 643644645646647648649650651 CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;652 653654655656657658659660661 SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;662 663664665 [key: string]: AugmentedEvent<ApiType>;666 };667 vesting: {668 669670671 Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;672 673674675 VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;676 677678679 VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;680 681682683 [key: string]: AugmentedEvent<ApiType>;684 };685 xcmpQueue: {686 687688689 BadFormat: AugmentedEvent<ApiType, [Option<H256>]>;690 691692693 BadVersion: AugmentedEvent<ApiType, [Option<H256>]>;694 695696697 Fail: AugmentedEvent<ApiType, [Option<H256>, XcmV2TraitsError]>;698 699700701 OverweightEnqueued: AugmentedEvent<ApiType, [u32, u32, u64, u64]>;702 703704705 OverweightServiced: AugmentedEvent<ApiType, [u64, u64]>;706 707708709 Success: AugmentedEvent<ApiType, [Option<H256>]>;710 711712713 UpwardMessageSent: AugmentedEvent<ApiType, [Option<H256>]>;714 715716717 XcmpMessageSent: AugmentedEvent<ApiType, [Option<H256>]>;718 719720721 [key: string]: AugmentedEvent<ApiType>;722 };723 } 724}