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 SetAdmin: AugmentedEvent<ApiType, [AccountId32]>;20 Stake: AugmentedEvent<ApiType, [AccountId32, u128]>;21 StakingRecalculation: AugmentedEvent<ApiType, [AccountId32, u128, u128]>;22 Unstake: AugmentedEvent<ApiType, [AccountId32, u128]>;23 242526 [key: string]: AugmentedEvent<ApiType>;27 };28 balances: {29 303132 BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;33 343536 Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;37 38394041 DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;42 434445 Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;46 474849 Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;50 51525354 ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;55 565758 Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;59 606162 Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;63 646566 Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;67 686970 Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;71 727374 [key: string]: AugmentedEvent<ApiType>;75 };76 common: {77 787980 Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;81 828384 CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;85 868788 CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;89 909192 CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;93 949596 CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;97 9899100 ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;101 102103104 ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;105 106107108 PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;109 110111112 TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;113 114115116 TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;117 118119120 Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;121 122123124 [key: string]: AugmentedEvent<ApiType>;125 };126 cumulusXcm: {127 128129130131 ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;132 133134135136 InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;137 138139140141 UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;142 143144145 [key: string]: AugmentedEvent<ApiType>;146 };147 dmpQueue: {148 149150151 ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;152 153154155 InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;156 157158159 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64 }>;160 161162163 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: u64], { overweightIndex: u64, weightUsed: u64 }>;164 165166167 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;168 169170171 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64], { messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64 }>;172 173174175 [key: string]: AugmentedEvent<ApiType>;176 };177 ethereum: {178 179180181 Executed: AugmentedEvent<ApiType, [H160, H160, H256, EvmCoreErrorExitReason]>;182 183184185 [key: string]: AugmentedEvent<ApiType>;186 };187 evm: {188 189190191 BalanceDeposit: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;192 193194195 BalanceWithdraw: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;196 197198199 Created: AugmentedEvent<ApiType, [H160]>;200 201202203 CreatedFailed: AugmentedEvent<ApiType, [H160]>;204 205206207 Executed: AugmentedEvent<ApiType, [H160]>;208 209210211 ExecutedFailed: AugmentedEvent<ApiType, [H160]>;212 213214215 Log: AugmentedEvent<ApiType, [EthereumLog]>;216 217218219 [key: string]: AugmentedEvent<ApiType>;220 };221 evmContractHelpers: {222 223224225 ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;226 227228229 ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;230 231232233 ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;234 235236237 [key: string]: AugmentedEvent<ApiType>;238 };239 parachainSystem: {240 241242243 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: u64, dmqHead: H256], { weightUsed: u64, dmqHead: H256 }>;244 245246247 DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;248 249250251 UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;252 253254255 ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;256 257258259 ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;260 261262263 ValidationFunctionStored: AugmentedEvent<ApiType, []>;264 265266267 [key: string]: AugmentedEvent<ApiType>;268 };269 polkadotXcm: {270 271272273274275 AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;276 277278279280281 Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;282 283284285286287288289 InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;290 291292293294295296297298299300301 InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;302 303304305306307308 Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;309 310311312313314315316 NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;317 318319320321322323 NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;324 325326327328329330331 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>;332 333334335336337338 NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;339 340341342343344345 NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;346 347348349350351352 ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;353 354355356357358 ResponseTaken: AugmentedEvent<ApiType, [u64]>;359 360361362363364 Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;365 366367368369370371 SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;372 373374375376377378379 UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;380 381382383384385 VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;386 387388389 [key: string]: AugmentedEvent<ApiType>;390 };391 rmrkCore: {392 CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;393 CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;394 CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;395 IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;396 NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;397 NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;398 NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;399 NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;400 NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;401 PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;402 PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;403 ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;404 ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;405 ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;406 ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;407 408409410 [key: string]: AugmentedEvent<ApiType>;411 };412 rmrkEquip: {413 BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;414 EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;415 416417418 [key: string]: AugmentedEvent<ApiType>;419 };420 scheduler: {421 422423424 CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;425 426427428 Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;429 430431432 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> }>;433 434435436 Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;437 438439440 [key: string]: AugmentedEvent<ApiType>;441 };442 structure: {443 444445446 Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;447 448449450 [key: string]: AugmentedEvent<ApiType>;451 };452 sudo: {453 454455456 KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;457 458459460 Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;461 462463464 SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;465 466467468 [key: string]: AugmentedEvent<ApiType>;469 };470 system: {471 472473474 CodeUpdated: AugmentedEvent<ApiType, []>;475 476477478 ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;479 480481482 ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;483 484485486 KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;487 488489490 NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;491 492493494 Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;495 496497498 [key: string]: AugmentedEvent<ApiType>;499 };500 transactionPayment: {501 502503504505 TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;506 507508509 [key: string]: AugmentedEvent<ApiType>;510 };511 treasury: {512 513514515 Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;516 517518519 Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;520 521522523 Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;524 525526527 Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;528 529530531 Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;532 533534535 Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;536 537538539 SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;540 541542543 Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;544 545546547 [key: string]: AugmentedEvent<ApiType>;548 };549 unique: {550 551552553554555556557 AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;558 559560561562563564565 AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;566 567568569570571572573 CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;574 575576577578579580581 CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;582 583584585586587588 CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;589 590591592593594595596 CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;597 598599600601602603 CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;604 605606607608609610 CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;611 612613614615616617618 CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;619 620621622623624625626 SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;627 628629630 [key: string]: AugmentedEvent<ApiType>;631 };632 vesting: {633 634635636 Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;637 638639640 VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;641 642643644 VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;645 646647648 [key: string]: AugmentedEvent<ApiType>;649 };650 xcmpQueue: {651 652653654 BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;655 656657658 BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;659 660661662 Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64 }>;663 664665666 OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: u64], { sender: u32, sentAt: u32, index: u64, required: u64 }>;667 668669670 OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: u64], { index: u64, used: u64 }>;671 672673674 Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: u64], { messageHash: Option<H256>, weight: u64 }>;675 676677678 UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;679 680681682 XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;683 684685686 [key: string]: AugmentedEvent<ApiType>;687 };688 } 689}