123456import '@polkadot/api-base/types/events';78import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';9import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u16, 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, FrameSupportDispatchDispatchInfo, FrameSupportPreimagesBounded, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletDemocracyVoteThreshold, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletStateTrieMigrationError, PalletStateTrieMigrationMigrationCompute, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetMultiAssets, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3Xcm, 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], { who: AccountId32, free: u128 }>;61 626364 Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;65 666768 Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;69 70717273 DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;74 757677 Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;78 798081 Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;82 838485 Issued: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;86 878889 Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;90 919293 Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;94 959697 Rescinded: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;98 99100101 Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;102 103104105106 ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;107 108109110 Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;111 112113114 Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;115 116117118 Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;119 120121122 Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;123 124125126 Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;127 128129130 Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;131 132133134 Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;135 136137138 Upgraded: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;139 140141142 Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;143 144145146 [key: string]: AugmentedEvent<ApiType>;147 };148 collatorSelection: {149 CandidateAdded: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;150 CandidateRemoved: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;151 InvulnerableAdded: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;152 InvulnerableRemoved: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;153 LicenseObtained: AugmentedEvent<ApiType, [accountId: AccountId32, deposit: u128], { accountId: AccountId32, deposit: u128 }>;154 LicenseReleased: AugmentedEvent<ApiType, [accountId: AccountId32, depositReturned: u128], { accountId: AccountId32, depositReturned: u128 }>;155 156157158 [key: string]: AugmentedEvent<ApiType>;159 };160 common: {161 162163164 AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;165 166167168 AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;169 170171172 Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;173 174175176 ApprovedForAll: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;177 178179180 CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;181 182183184 CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;185 186187188 CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;189 190191192 CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;193 194195196 CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;197 198199200 CollectionOwnerChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;201 202203204 CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;205 206207208 CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;209 210211212 CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;213 214215216 CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;217 218219220 CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;221 222223224 ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;225 226227228 ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;229 230231232 PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;233 234235236 SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;237 238239240 TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;241 242243244 TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;245 246247248 Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;249 250251252 [key: string]: AugmentedEvent<ApiType>;253 };254 configuration: {255 NewCollatorKickThreshold: AugmentedEvent<ApiType, [lengthInBlocks: Option<u32>], { lengthInBlocks: Option<u32> }>;256 NewCollatorLicenseBond: AugmentedEvent<ApiType, [bondCost: Option<u128>], { bondCost: Option<u128> }>;257 NewDesiredCollators: AugmentedEvent<ApiType, [desiredCollators: Option<u32>], { desiredCollators: Option<u32> }>;258 259260261 [key: string]: AugmentedEvent<ApiType>;262 };263 council: {264 265266267 Approved: AugmentedEvent<ApiType, [proposalHash: H256], { proposalHash: H256 }>;268 269270271 Closed: AugmentedEvent<ApiType, [proposalHash: H256, yes: u32, no: u32], { proposalHash: H256, yes: u32, no: u32 }>;272 273274275 Disapproved: AugmentedEvent<ApiType, [proposalHash: H256], { proposalHash: H256 }>;276 277278279 Executed: AugmentedEvent<ApiType, [proposalHash: H256, result: Result<Null, SpRuntimeDispatchError>], { proposalHash: H256, result: Result<Null, SpRuntimeDispatchError> }>;280 281282283 MemberExecuted: AugmentedEvent<ApiType, [proposalHash: H256, result: Result<Null, SpRuntimeDispatchError>], { proposalHash: H256, result: Result<Null, SpRuntimeDispatchError> }>;284 285286287288 Proposed: AugmentedEvent<ApiType, [account: AccountId32, proposalIndex: u32, proposalHash: H256, threshold: u32], { account: AccountId32, proposalIndex: u32, proposalHash: H256, threshold: u32 }>;289 290291292293 Voted: AugmentedEvent<ApiType, [account: AccountId32, proposalHash: H256, voted: bool, yes: u32, no: u32], { account: AccountId32, proposalHash: H256, voted: bool, yes: u32, no: u32 }>;294 295296297 [key: string]: AugmentedEvent<ApiType>;298 };299 councilMembership: {300 301302303 Dummy: AugmentedEvent<ApiType, []>;304 305306307 KeyChanged: AugmentedEvent<ApiType, []>;308 309310311 MemberAdded: AugmentedEvent<ApiType, []>;312 313314315 MemberRemoved: AugmentedEvent<ApiType, []>;316 317318319 MembersReset: AugmentedEvent<ApiType, []>;320 321322323 MembersSwapped: AugmentedEvent<ApiType, []>;324 325326327 [key: string]: AugmentedEvent<ApiType>;328 };329 cumulusXcm: {330 331332333334 ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV3TraitsOutcome]>;335 336337338339 InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;340 341342343344 UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;345 346347348 [key: string]: AugmentedEvent<ApiType>;349 };350 democracy: {351 352353354 Blacklisted: AugmentedEvent<ApiType, [proposalHash: H256], { proposalHash: H256 }>;355 356357358 Cancelled: AugmentedEvent<ApiType, [refIndex: u32], { refIndex: u32 }>;359 360361362 Delegated: AugmentedEvent<ApiType, [who: AccountId32, target: AccountId32], { who: AccountId32, target: AccountId32 }>;363 364365366 ExternalTabled: AugmentedEvent<ApiType, []>;367 368369370 MetadataCleared: AugmentedEvent<ApiType, [owner: PalletDemocracyMetadataOwner, hash_: H256], { owner: PalletDemocracyMetadataOwner, hash_: H256 }>;371 372373374 MetadataSet: AugmentedEvent<ApiType, [owner: PalletDemocracyMetadataOwner, hash_: H256], { owner: PalletDemocracyMetadataOwner, hash_: H256 }>;375 376377378 MetadataTransferred: AugmentedEvent<ApiType, [prevOwner: PalletDemocracyMetadataOwner, owner: PalletDemocracyMetadataOwner, hash_: H256], { prevOwner: PalletDemocracyMetadataOwner, owner: PalletDemocracyMetadataOwner, hash_: H256 }>;379 380381382 NotPassed: AugmentedEvent<ApiType, [refIndex: u32], { refIndex: u32 }>;383 384385386 Passed: AugmentedEvent<ApiType, [refIndex: u32], { refIndex: u32 }>;387 388389390 ProposalCanceled: AugmentedEvent<ApiType, [propIndex: u32], { propIndex: u32 }>;391 392393394 Proposed: AugmentedEvent<ApiType, [proposalIndex: u32, deposit: u128], { proposalIndex: u32, deposit: u128 }>;395 396397398 Seconded: AugmentedEvent<ApiType, [seconder: AccountId32, propIndex: u32], { seconder: AccountId32, propIndex: u32 }>;399 400401402 Started: AugmentedEvent<ApiType, [refIndex: u32, threshold: PalletDemocracyVoteThreshold], { refIndex: u32, threshold: PalletDemocracyVoteThreshold }>;403 404405406 Tabled: AugmentedEvent<ApiType, [proposalIndex: u32, deposit: u128], { proposalIndex: u32, deposit: u128 }>;407 408409410 Undelegated: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;411 412413414 Vetoed: AugmentedEvent<ApiType, [who: AccountId32, proposalHash: H256, until: u32], { who: AccountId32, proposalHash: H256, until: u32 }>;415 416417418 Voted: AugmentedEvent<ApiType, [voter: AccountId32, refIndex: u32, vote: PalletDemocracyVoteAccountVote], { voter: AccountId32, refIndex: u32, vote: PalletDemocracyVoteAccountVote }>;419 420421422 [key: string]: AugmentedEvent<ApiType>;423 };424 dmpQueue: {425 426427428 ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV3TraitsOutcome], { messageId: U8aFixed, outcome: XcmV3TraitsOutcome }>;429 430431432 InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;433 434435436 MaxMessagesExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;437 438439440 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight }>;441 442443444 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight], { overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight }>;445 446447448 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;449 450451452 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight }>;453 454455456 [key: string]: AugmentedEvent<ApiType>;457 };458 ethereum: {459 460461462 Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason, extraData: Bytes], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason, extraData: Bytes }>;463 464465466 [key: string]: AugmentedEvent<ApiType>;467 };468 evm: {469 470471472 Created: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;473 474475476 CreatedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;477 478479480 Executed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;481 482483484 ExecutedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;485 486487488 Log: AugmentedEvent<ApiType, [log: EthereumLog], { log: EthereumLog }>;489 490491492 [key: string]: AugmentedEvent<ApiType>;493 };494 evmContractHelpers: {495 496497498 ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;499 500501502 ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;503 504505506 ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;507 508509510 [key: string]: AugmentedEvent<ApiType>;511 };512 evmMigration: {513 514515516 TestEvent: AugmentedEvent<ApiType, []>;517 518519520 [key: string]: AugmentedEvent<ApiType>;521 };522 fellowshipCollective: {523 524525526 MemberAdded: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;527 528529530 MemberRemoved: AugmentedEvent<ApiType, [who: AccountId32, rank: u16], { who: AccountId32, rank: u16 }>;531 532533534 RankChanged: AugmentedEvent<ApiType, [who: AccountId32, rank: u16], { who: AccountId32, rank: u16 }>;535 536537538539 Voted: AugmentedEvent<ApiType, [who: AccountId32, poll: u32, vote: PalletRankedCollectiveVoteRecord, tally: PalletRankedCollectiveTally], { who: AccountId32, poll: u32, vote: PalletRankedCollectiveVoteRecord, tally: PalletRankedCollectiveTally }>;540 541542543 [key: string]: AugmentedEvent<ApiType>;544 };545 fellowshipReferenda: {546 547548549 Approved: AugmentedEvent<ApiType, [index: u32], { index: u32 }>;550 551552553 Cancelled: AugmentedEvent<ApiType, [index: u32, tally: PalletRankedCollectiveTally], { index: u32, tally: PalletRankedCollectiveTally }>;554 ConfirmAborted: AugmentedEvent<ApiType, [index: u32], { index: u32 }>;555 556557558 Confirmed: AugmentedEvent<ApiType, [index: u32, tally: PalletRankedCollectiveTally], { index: u32, tally: PalletRankedCollectiveTally }>;559 ConfirmStarted: AugmentedEvent<ApiType, [index: u32], { index: u32 }>;560 561562563 DecisionDepositPlaced: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], { index: u32, who: AccountId32, amount: u128 }>;564 565566567 DecisionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], { index: u32, who: AccountId32, amount: u128 }>;568 569570571 DecisionStarted: AugmentedEvent<ApiType, [index: u32, track: u16, proposal: FrameSupportPreimagesBounded, tally: PalletRankedCollectiveTally], { index: u32, track: u16, proposal: FrameSupportPreimagesBounded, tally: PalletRankedCollectiveTally }>;572 573574575 DepositSlashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;576 577578579 Killed: AugmentedEvent<ApiType, [index: u32, tally: PalletRankedCollectiveTally], { index: u32, tally: PalletRankedCollectiveTally }>;580 581582583 MetadataCleared: AugmentedEvent<ApiType, [index: u32, hash_: H256], { index: u32, hash_: H256 }>;584 585586587 MetadataSet: AugmentedEvent<ApiType, [index: u32, hash_: H256], { index: u32, hash_: H256 }>;588 589590591 Rejected: AugmentedEvent<ApiType, [index: u32, tally: PalletRankedCollectiveTally], { index: u32, tally: PalletRankedCollectiveTally }>;592 593594595 SubmissionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], { index: u32, who: AccountId32, amount: u128 }>;596 597598599 Submitted: AugmentedEvent<ApiType, [index: u32, track: u16, proposal: FrameSupportPreimagesBounded], { index: u32, track: u16, proposal: FrameSupportPreimagesBounded }>;600 601602603 TimedOut: AugmentedEvent<ApiType, [index: u32, tally: PalletRankedCollectiveTally], { index: u32, tally: PalletRankedCollectiveTally }>;604 605606607 [key: string]: AugmentedEvent<ApiType>;608 };609 foreignAssets: {610 611612613 AssetRegistered: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;614 615616617 AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;618 619620621 ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;622 623624625 ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;626 627628629 [key: string]: AugmentedEvent<ApiType>;630 };631 identity: {632 633634635 IdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;636 637638639 IdentitiesRemoved: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;640 641642643 IdentityCleared: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;644 645646647 IdentityKilled: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;648 649650651 IdentitySet: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;652 653654655 JudgementGiven: AugmentedEvent<ApiType, [target: AccountId32, registrarIndex: u32], { target: AccountId32, registrarIndex: u32 }>;656 657658659 JudgementRequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;660 661662663 JudgementUnrequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;664 665666667 RegistrarAdded: AugmentedEvent<ApiType, [registrarIndex: u32], { registrarIndex: u32 }>;668 669670671 SubIdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;672 673674675 SubIdentityAdded: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;676 677678679 SubIdentityRemoved: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;680 681682683684 SubIdentityRevoked: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;685 686687688 [key: string]: AugmentedEvent<ApiType>;689 };690 maintenance: {691 MaintenanceDisabled: AugmentedEvent<ApiType, []>;692 MaintenanceEnabled: AugmentedEvent<ApiType, []>;693 694695696 [key: string]: AugmentedEvent<ApiType>;697 };698 parachainSystem: {699 700701702 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: SpWeightsWeightV2Weight, dmqHead: H256], { weightUsed: SpWeightsWeightV2Weight, dmqHead: H256 }>;703 704705706 DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;707 708709710 UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;711 712713714 UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;715 716717718 ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;719 720721722 ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;723 724725726 ValidationFunctionStored: AugmentedEvent<ApiType, []>;727 728729730 [key: string]: AugmentedEvent<ApiType>;731 };732 polkadotXcm: {733 734735736737738 AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;739 740741742743744 AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;745 746747748749750 Attempted: AugmentedEvent<ApiType, [XcmV3TraitsOutcome]>;751 752753754755756 FeesPaid: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;757 758759760761762763764 InvalidQuerier: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;765 766767768769770771772773774775776 InvalidQuerierVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;777 778779780781782783784 InvalidResponder: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;785 786787788789790791792793794795796 InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;797 798799800801802803 Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;804 805806807808809810811 NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;812 813814815816817818 NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;819 820821822823824825826 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;827 828829830831832833 NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;834 835836837838839840 NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3TraitsError]>;841 842843844845846847 ResponseReady: AugmentedEvent<ApiType, [u64, XcmV3Response]>;848 849850851852853 ResponseTaken: AugmentedEvent<ApiType, [u64]>;854 855856857858859 Sent: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;860 861862863864865866 SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32]>;867 868869870871872873874 UnexpectedResponse: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;875 876877878879880881882 VersionChangeNotified: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;883 884885886887888 VersionNotifyRequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;889 890891892893894895 VersionNotifyStarted: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;896 897898899900901 VersionNotifyUnrequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;902 903904905 [key: string]: AugmentedEvent<ApiType>;906 };907 preimage: {908 909910911 Cleared: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;912 913914915 Noted: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;916 917918919 Requested: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;920 921922923 [key: string]: AugmentedEvent<ApiType>;924 };925 scheduler: {926 927928929 CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;930 931932933 Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;934 935936937 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> }>;938 939940941 PeriodicFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;942 943944945 PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;946 947948949 Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;950 951952953 [key: string]: AugmentedEvent<ApiType>;954 };955 session: {956 957958959960 NewSession: AugmentedEvent<ApiType, [sessionIndex: u32], { sessionIndex: u32 }>;961 962963964 [key: string]: AugmentedEvent<ApiType>;965 };966 stateTrieMigration: {967 968969970 AutoMigrationFinished: AugmentedEvent<ApiType, []>;971 972973974 Halted: AugmentedEvent<ApiType, [error: PalletStateTrieMigrationError], { error: PalletStateTrieMigrationError }>;975 976977978979 Migrated: AugmentedEvent<ApiType, [top: u32, child: u32, compute: PalletStateTrieMigrationMigrationCompute], { top: u32, child: u32, compute: PalletStateTrieMigrationMigrationCompute }>;980 981982983 Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;984 985986987 [key: string]: AugmentedEvent<ApiType>;988 };989 structure: {990 991992993 Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;994 995996997 [key: string]: AugmentedEvent<ApiType>;998 };999 sudo: {1000 100110021003 KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;1004 100510061007 Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;1008 100910101011 SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;1012 101310141015 [key: string]: AugmentedEvent<ApiType>;1016 };1017 system: {1018 101910201021 CodeUpdated: AugmentedEvent<ApiType, []>;1022 102310241025 ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;1026 102710281029 ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;1030 103110321033 KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;1034 103510361037 NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;1038 103910401041 Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;1042 104310441045 [key: string]: AugmentedEvent<ApiType>;1046 };1047 technicalCommittee: {1048 104910501051 Approved: AugmentedEvent<ApiType, [proposalHash: H256], { proposalHash: H256 }>;1052 105310541055 Closed: AugmentedEvent<ApiType, [proposalHash: H256, yes: u32, no: u32], { proposalHash: H256, yes: u32, no: u32 }>;1056 105710581059 Disapproved: AugmentedEvent<ApiType, [proposalHash: H256], { proposalHash: H256 }>;1060 106110621063 Executed: AugmentedEvent<ApiType, [proposalHash: H256, result: Result<Null, SpRuntimeDispatchError>], { proposalHash: H256, result: Result<Null, SpRuntimeDispatchError> }>;1064 106510661067 MemberExecuted: AugmentedEvent<ApiType, [proposalHash: H256, result: Result<Null, SpRuntimeDispatchError>], { proposalHash: H256, result: Result<Null, SpRuntimeDispatchError> }>;1068 1069107010711072 Proposed: AugmentedEvent<ApiType, [account: AccountId32, proposalIndex: u32, proposalHash: H256, threshold: u32], { account: AccountId32, proposalIndex: u32, proposalHash: H256, threshold: u32 }>;1073 1074107510761077 Voted: AugmentedEvent<ApiType, [account: AccountId32, proposalHash: H256, voted: bool, yes: u32, no: u32], { account: AccountId32, proposalHash: H256, voted: bool, yes: u32, no: u32 }>;1078 107910801081 [key: string]: AugmentedEvent<ApiType>;1082 };1083 technicalCommitteeMembership: {1084 108510861087 Dummy: AugmentedEvent<ApiType, []>;1088 108910901091 KeyChanged: AugmentedEvent<ApiType, []>;1092 109310941095 MemberAdded: AugmentedEvent<ApiType, []>;1096 109710981099 MemberRemoved: AugmentedEvent<ApiType, []>;1100 110111021103 MembersReset: AugmentedEvent<ApiType, []>;1104 110511061107 MembersSwapped: AugmentedEvent<ApiType, []>;1108 110911101111 [key: string]: AugmentedEvent<ApiType>;1112 };1113 testUtils: {1114 BatchCompleted: AugmentedEvent<ApiType, []>;1115 ShouldRollback: AugmentedEvent<ApiType, []>;1116 ValueIsSet: AugmentedEvent<ApiType, []>;1117 111811191120 [key: string]: AugmentedEvent<ApiType>;1121 };1122 tokens: {1123 112411251126 BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128 }>;1127 112811291130 Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1131 1132113311341135 DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1136 113711381139 Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1140 114111421143 Locked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1144 114511461147 LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32 }>;1148 114911501151 LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1152 115311541155 Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1156 1157115811591160 ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;1161 116211631164 Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;1165 116611671168 TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, amount: u128], { currencyId: PalletForeignAssetsAssetIds, amount: u128 }>;1169 117011711172 Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;1173 117411751176 Unlocked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1177 117811791180 Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1181 118211831184 Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1185 118611871188 [key: string]: AugmentedEvent<ApiType>;1189 };1190 transactionPayment: {1191 1192119311941195 TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;1196 119711981199 [key: string]: AugmentedEvent<ApiType>;1200 };1201 treasury: {1202 120312041205 Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;1206 120712081209 Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;1210 121112121213 Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;1214 121512161217 Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;1218 121912201221 Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;1222 122312241225 Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;1226 122712281229 SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;1230 123112321233 Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;1234 123512361237 UpdatedInactive: AugmentedEvent<ApiType, [reactivated: u128, deactivated: u128], { reactivated: u128, deactivated: u128 }>;1238 123912401241 [key: string]: AugmentedEvent<ApiType>;1242 };1243 vesting: {1244 124512461247 Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;1248 124912501251 VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;1252 125312541255 VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;1256 125712581259 [key: string]: AugmentedEvent<ApiType>;1260 };1261 xcmpQueue: {1262 126312641265 BadFormat: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;1266 126712681269 BadVersion: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;1270 127112721273 Fail: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<U8aFixed>, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight }>;1274 127512761277 OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight], { sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight }>;1278 127912801281 OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: SpWeightsWeightV2Weight], { index: u64, used: SpWeightsWeightV2Weight }>;1282 128312841285 Success: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, weight: SpWeightsWeightV2Weight], { messageHash: Option<U8aFixed>, weight: SpWeightsWeightV2Weight }>;1286 128712881289 XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;1290 129112921293 [key: string]: AugmentedEvent<ApiType>;1294 };1295 xTokens: {1296 129712981299 TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV3MultiassetMultiAssets, fee: XcmV3MultiAsset, dest: XcmV3MultiLocation], { sender: AccountId32, assets: XcmV3MultiassetMultiAssets, fee: XcmV3MultiAsset, dest: XcmV3MultiLocation }>;1300 130113021303 [key: string]: AugmentedEvent<ApiType>;1304 };1305 } 1306}