123456import '@polkadot/api-base/types/events';78import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';9import type { Bytes, Null, Option, Result, U256, U8aFixed, u128, u32, u64, u8 } from '@polkadot/types-codec';10import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';11import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';1213export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;1415declare module '@polkadot/api-base/types/events' {16 interface AugmentedEvents<ApiType extends ApiTypes> {17 balances: {18 192021 BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;22 232425 Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;26 27282930 DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;31 323334 Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;35 363738 Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;39 40414243 ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;44 454647 Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;48 495051 Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;52 535455 Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;56 575859 Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;60 616263 [key: string]: AugmentedEvent<ApiType>;64 };65 common: {66 676869 Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;70 717273 CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;74 757677 CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;78 798081 CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;82 838485 CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;86 878889 ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;90 919293 ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;94 959697 PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;98 99100101 TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;102 103104105 TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;106 107108109 Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;110 111112113 [key: string]: AugmentedEvent<ApiType>;114 };115 cumulusXcm: {116 117118119120 ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;121 122123124125 InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;126 127128129130 UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;131 132133134 [key: string]: AugmentedEvent<ApiType>;135 };136 dmpQueue: {137 138139140 ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;141 142143144 InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;145 146147148 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64 }>;149 150151152 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: u64], { overweightIndex: u64, weightUsed: u64 }>;153 154155156 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;157 158159160 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64], { messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64 }>;161 162163164 [key: string]: AugmentedEvent<ApiType>;165 };166 ethereum: {167 168169170 Executed: AugmentedEvent<ApiType, [H160, H160, H256, EvmCoreErrorExitReason]>;171 172173174 [key: string]: AugmentedEvent<ApiType>;175 };176 evm: {177 178179180 BalanceDeposit: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;181 182183184 BalanceWithdraw: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;185 186187188 Created: AugmentedEvent<ApiType, [H160]>;189 190191192 CreatedFailed: AugmentedEvent<ApiType, [H160]>;193 194195196 Executed: AugmentedEvent<ApiType, [H160]>;197 198199200 ExecutedFailed: AugmentedEvent<ApiType, [H160]>;201 202203204 Log: AugmentedEvent<ApiType, [EthereumLog]>;205 206207208 [key: string]: AugmentedEvent<ApiType>;209 };210 parachainSystem: {211 212213214 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: u64, dmqHead: H256], { weightUsed: u64, dmqHead: H256 }>;215 216217218 DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;219 220221222 UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;223 224225226 ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;227 228229230 ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;231 232233234 ValidationFunctionStored: AugmentedEvent<ApiType, []>;235 236237238 [key: string]: AugmentedEvent<ApiType>;239 };240 polkadotXcm: {241 242243244245246 AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;247 248249250251252 Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;253 254255256257258259260 InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;261 262263264265266267268269270271272 InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;273 274275276277278279 Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;280 281282283284285286287 NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;288 289290291292293294 NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;295 296297298299300301302 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>;303 304305306307308309 NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;310 311312313314315316 NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;317 318319320321322323 ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;324 325326327328329 ResponseTaken: AugmentedEvent<ApiType, [u64]>;330 331332333334335 Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;336 337338339340341342 SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;343 344345346347348349350 UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;351 352353354355356 VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;357 358359360 [key: string]: AugmentedEvent<ApiType>;361 };362 structure: {363 364365366 Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;367 368369370 [key: string]: AugmentedEvent<ApiType>;371 };372 sudo: {373 374375376 KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;377 378379380 Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;381 382383384 SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;385 386387388 [key: string]: AugmentedEvent<ApiType>;389 };390 system: {391 392393394 CodeUpdated: AugmentedEvent<ApiType, []>;395 396397398 ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;399 400401402 ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;403 404405406 KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;407 408409410 NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;411 412413414 Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;415 416417418 [key: string]: AugmentedEvent<ApiType>;419 };420 tokens: {421 422423424 BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128 }>;425 426427428 Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;429 430431432433 DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;434 435436437 Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;438 439440441 LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32 }>;442 443444445 LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;446 447448449 Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;450 451452453454 ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;455 456457458 Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;459 460461462 TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, amount: u128], { currencyId: PalletForeignAssetsAssetIds, amount: u128 }>;463 464465466 Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;467 468469470 Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;471 472473474 Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;475 476477478 [key: string]: AugmentedEvent<ApiType>;479 };480 transactionPayment: {481 482483484485 TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;486 487488489 [key: string]: AugmentedEvent<ApiType>;490 };491 treasury: {492 493494495 Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;496 497498499 Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;500 501502503 Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;504 505506507 Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;508 509510511 Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;512 513514515 Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;516 517518519 SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;520 521522523 Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;524 525526527 [key: string]: AugmentedEvent<ApiType>;528 };529 unique: {530 531532533534535536537 AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;538 539540541542543544545 AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;546 547548549550551552553 CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;554 555556557558559560561 CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;562 563564565566567568 CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;569 570571572573574575576 CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;577 578579580581582583 CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;584 585586587588589590 CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;591 592593594595596597598 CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;599 600601602603604605606 SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;607 608609610 [key: string]: AugmentedEvent<ApiType>;611 };612 vesting: {613 614615616 Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;617 618619620 VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;621 622623624 VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;625 626627628 [key: string]: AugmentedEvent<ApiType>;629 };630 xcmpQueue: {631 632633634 BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;635 636637638 BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;639 640641642 Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64 }>;643 644645646 OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: u64], { sender: u32, sentAt: u32, index: u64, required: u64 }>;647 648649650 OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: u64], { index: u64, used: u64 }>;651 652653654 Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: u64], { messageHash: Option<H256>, weight: u64 }>;655 656657658 UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;659 660661662 XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;663 664665666 [key: string]: AugmentedEvent<ApiType>;667 };668 xTokens: {669 670671672 TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation], { sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation }>;673 674675676 [key: string]: AugmentedEvent<ApiType>;677 };678 } 679}