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 202122232425 SetAdmin: AugmentedEvent<ApiType, [AccountId32]>;26 27282930313233 Stake: AugmentedEvent<ApiType, [AccountId32, u128]>;34 3536373839404142 StakingRecalculation: AugmentedEvent<ApiType, [AccountId32, u128, u128]>;43 44454647484950 Unstake: AugmentedEvent<ApiType, [AccountId32, u128]>;51 525354 [key: string]: AugmentedEvent<ApiType>;55 };56 balances: {57 585960 BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;61 626364 Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;65 66676869 DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;70 717273 Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;74 757677 Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;78 79808182 ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;83 848586 Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;87 888990 Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;91 929394 Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;95 969798 Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;99 100101102 [key: string]: AugmentedEvent<ApiType>;103 };104 common: {105 106107108 Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;109 110111112 CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;113 114115116 CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;117 118119120 CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;121 122123124 CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;125 126127128 ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;129 130131132 ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;133 134135136 PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;137 138139140 TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;141 142143144 TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;145 146147148 Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;149 150151152 [key: string]: AugmentedEvent<ApiType>;153 };154 cumulusXcm: {155 156157158159 ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;160 161162163164 InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;165 166167168169 UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;170 171172173 [key: string]: AugmentedEvent<ApiType>;174 };175 dmpQueue: {176 177178179 ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;180 181182183 InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;184 185186187 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64 }>;188 189190191 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: u64], { overweightIndex: u64, weightUsed: u64 }>;192 193194195 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;196 197198199 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64], { messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64 }>;200 201202203 [key: string]: AugmentedEvent<ApiType>;204 };205 ethereum: {206 207208209 Executed: AugmentedEvent<ApiType, [H160, H160, H256, EvmCoreErrorExitReason]>;210 211212213 [key: string]: AugmentedEvent<ApiType>;214 };215 evm: {216 217218219 BalanceDeposit: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;220 221222223 BalanceWithdraw: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;224 225226227 Created: AugmentedEvent<ApiType, [H160]>;228 229230231 CreatedFailed: AugmentedEvent<ApiType, [H160]>;232 233234235 Executed: AugmentedEvent<ApiType, [H160]>;236 237238239 ExecutedFailed: AugmentedEvent<ApiType, [H160]>;240 241242243 Log: AugmentedEvent<ApiType, [EthereumLog]>;244 245246247 [key: string]: AugmentedEvent<ApiType>;248 };249 evmContractHelpers: {250 251252253 ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;254 255256257 ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;258 259260261 ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;262 263264265 [key: string]: AugmentedEvent<ApiType>;266 };267 parachainSystem: {268 269270271 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: u64, dmqHead: H256], { weightUsed: u64, dmqHead: H256 }>;272 273274275 DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;276 277278279 UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;280 281282283 ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;284 285286287 ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;288 289290291 ValidationFunctionStored: AugmentedEvent<ApiType, []>;292 293294295 [key: string]: AugmentedEvent<ApiType>;296 };297 polkadotXcm: {298 299300301302303 AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;304 305306307308309 Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;310 311312313314315316317 InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;318 319320321322323324325326327328329 InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;330 331332333334335336 Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;337 338339340341342343344 NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;345 346347348349350351 NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;352 353354355356357358359 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>;360 361362363364365366 NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;367 368369370371372373 NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;374 375376377378379380 ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;381 382383384385386 ResponseTaken: AugmentedEvent<ApiType, [u64]>;387 388389390391392 Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;393 394395396397398399 SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;400 401402403404405406407 UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;408 409410411412413 VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;414 415416417 [key: string]: AugmentedEvent<ApiType>;418 };419 rmrkCore: {420 CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;421 CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;422 CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;423 IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;424 NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;425 NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;426 NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;427 NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;428 NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;429 PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;430 PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;431 ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;432 ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;433 ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;434 ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;435 436437438 [key: string]: AugmentedEvent<ApiType>;439 };440 rmrkEquip: {441 BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;442 EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;443 444445446 [key: string]: AugmentedEvent<ApiType>;447 };448 scheduler: {449 450451452 CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;453 454455456 Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;457 458459460 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> }>;461 462463464 Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;465 466467468 [key: string]: AugmentedEvent<ApiType>;469 };470 structure: {471 472473474 Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;475 476477478 [key: string]: AugmentedEvent<ApiType>;479 };480 sudo: {481 482483484 KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;485 486487488 Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;489 490491492 SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;493 494495496 [key: string]: AugmentedEvent<ApiType>;497 };498 system: {499 500501502 CodeUpdated: AugmentedEvent<ApiType, []>;503 504505506 ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;507 508509510 ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;511 512513514 KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;515 516517518 NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;519 520521522 Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;523 524525526 [key: string]: AugmentedEvent<ApiType>;527 };528 transactionPayment: {529 530531532533 TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;534 535536537 [key: string]: AugmentedEvent<ApiType>;538 };539 treasury: {540 541542543 Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;544 545546547 Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;548 549550551 Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;552 553554555 Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;556 557558559 Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;560 561562563 Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;564 565566567 SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;568 569570571 Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;572 573574575 [key: string]: AugmentedEvent<ApiType>;576 };577 unique: {578 579580581582583584585 AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;586 587588589590591592593 AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;594 595596597598599600601 CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;602 603604605606607608609 CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;610 611612613614615616 CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;617 618619620621622623624 CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;625 626627628629630631 CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;632 633634635636637638 CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;639 640641642643644645646 CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;647 648649650651652653654 SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;655 656657658 [key: string]: AugmentedEvent<ApiType>;659 };660 vesting: {661 662663664 Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;665 666667668 VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;669 670671672 VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;673 674675676 [key: string]: AugmentedEvent<ApiType>;677 };678 xcmpQueue: {679 680681682 BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;683 684685686 BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;687 688689690 Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64 }>;691 692693694 OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: u64], { sender: u32, sentAt: u32, index: u64, required: u64 }>;695 696697698 OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: u64], { index: u64, used: u64 }>;699 700701702 Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: u64], { messageHash: Option<H256>, weight: u64 }>;703 704705706 UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;707 708709710 XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;711 712713714 [key: string]: AugmentedEvent<ApiType>;715 };716 } 717}