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 parachainSystem: {222 223224225 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: u64, dmqHead: H256], { weightUsed: u64, dmqHead: H256 }>;226 227228229 DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;230 231232233 UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;234 235236237 ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;238 239240241 ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;242 243244245 ValidationFunctionStored: AugmentedEvent<ApiType, []>;246 247248249 [key: string]: AugmentedEvent<ApiType>;250 };251 polkadotXcm: {252 253254255256257 AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;258 259260261262263 Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;264 265266267268269270271 InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;272 273274275276277278279280281282283 InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;284 285286287288289290 Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;291 292293294295296297298 NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;299 300301302303304305 NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;306 307308309310311312313 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>;314 315316317318319320 NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;321 322323324325326327 NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;328 329330331332333334 ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;335 336337338339340 ResponseTaken: AugmentedEvent<ApiType, [u64]>;341 342343344345346 Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;347 348349350351352353 SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;354 355356357358359360361 UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;362 363364365366367 VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;368 369370371 [key: string]: AugmentedEvent<ApiType>;372 };373 rmrkCore: {374 CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;375 CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;376 CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;377 IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;378 NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;379 NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;380 NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;381 NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;382 NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;383 PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;384 PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;385 ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;386 ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;387 ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;388 ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;389 390391392 [key: string]: AugmentedEvent<ApiType>;393 };394 rmrkEquip: {395 BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;396 EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;397 398399400 [key: string]: AugmentedEvent<ApiType>;401 };402 scheduler: {403 404405406 CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;407 408409410 Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;411 412413414 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> }>;415 416417418 Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;419 420421422 [key: string]: AugmentedEvent<ApiType>;423 };424 structure: {425 426427428 Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;429 430431432 [key: string]: AugmentedEvent<ApiType>;433 };434 sudo: {435 436437438 KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;439 440441442 Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;443 444445446 SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;447 448449450 [key: string]: AugmentedEvent<ApiType>;451 };452 system: {453 454455456 CodeUpdated: AugmentedEvent<ApiType, []>;457 458459460 ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;461 462463464 ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;465 466467468 KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;469 470471472 NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;473 474475476 Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;477 478479480 [key: string]: AugmentedEvent<ApiType>;481 };482 transactionPayment: {483 484485486487 TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;488 489490491 [key: string]: AugmentedEvent<ApiType>;492 };493 treasury: {494 495496497 Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;498 499500501 Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;502 503504505 Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;506 507508509 Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;510 511512513 Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;514 515516517 Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;518 519520521 SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;522 523524525 Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;526 527528529 [key: string]: AugmentedEvent<ApiType>;530 };531 unique: {532 533534535536537538539 AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;540 541542543544545546547 AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;548 549550551552553554555 CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;556 557558559560561562563 CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;564 565566567568569570 CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;571 572573574575576577578 CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;579 580581582583584585 CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;586 587588589590591592 CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;593 594595596597598599600 CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;601 602603604605606607608 SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;609 610611612 [key: string]: AugmentedEvent<ApiType>;613 };614 vesting: {615 616617618 Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;619 620621622 VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;623 624625626 VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;627 628629630 [key: string]: AugmentedEvent<ApiType>;631 };632 xcmpQueue: {633 634635636 BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;637 638639640 BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;641 642643644 Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64 }>;645 646647648 OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: u64], { sender: u32, sentAt: u32, index: u64, required: u64 }>;649 650651652 OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: u64], { index: u64, used: u64 }>;653 654655656 Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: u64], { messageHash: Option<H256>, weight: u64 }>;657 658659660 UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;661 662663664 XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;665 666667668 [key: string]: AugmentedEvent<ApiType>;669 };670 } 671}