123456import '@polkadot/api-base/types/events';78import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';9import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';10import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';11import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetMultiAssets, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3Xcm, 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 appPromotion: {18 192021222324 SetAdmin: AugmentedEvent<ApiType, [AccountId32]>;25 26272829303132 Stake: AugmentedEvent<ApiType, [AccountId32, u128]>;33 3435363738394041 StakingRecalculation: AugmentedEvent<ApiType, [AccountId32, u128, u128]>;42 43444546474849 Unstake: AugmentedEvent<ApiType, [AccountId32, u128]>;50 515253 [key: string]: AugmentedEvent<ApiType>;54 };55 balances: {56 575859 BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;60 616263 Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;64 65666768 DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;69 707172 Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;73 747576 Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;77 78798081 ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;82 838485 Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;86 878889 Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;90 919293 Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;94 959697 Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;98 99100101 [key: string]: AugmentedEvent<ApiType>;102 };103 collatorSelection: {104 CandidateAdded: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;105 CandidateRemoved: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;106 InvulnerableAdded: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;107 InvulnerableRemoved: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;108 LicenseObtained: AugmentedEvent<ApiType, [accountId: AccountId32, deposit: u128], { accountId: AccountId32, deposit: u128 }>;109 LicenseReleased: AugmentedEvent<ApiType, [accountId: AccountId32, depositReturned: u128], { accountId: AccountId32, depositReturned: u128 }>;110 111112113 [key: string]: AugmentedEvent<ApiType>;114 };115 common: {116 117118119 AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;120 121122123 AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;124 125126127 Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;128 129130131 ApprovedForAll: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;132 133134135 CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;136 137138139 CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;140 141142143 CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;144 145146147 CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;148 149150151 CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;152 153154155 CollectionOwnerChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;156 157158159 CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;160 161162163 CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;164 165166167 CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;168 169170171 CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;172 173174175 CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;176 177178179 ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;180 181182183 ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;184 185186187 PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;188 189190191 SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;192 193194195 TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;196 197198199 TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;200 201202203 Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;204 205206207 [key: string]: AugmentedEvent<ApiType>;208 };209 configuration: {210 NewCollatorKickThreshold: AugmentedEvent<ApiType, [lengthInBlocks: Option<u32>], { lengthInBlocks: Option<u32> }>;211 NewCollatorLicenseBond: AugmentedEvent<ApiType, [bondCost: Option<u128>], { bondCost: Option<u128> }>;212 NewDesiredCollators: AugmentedEvent<ApiType, [desiredCollators: Option<u32>], { desiredCollators: Option<u32> }>;213 214215216 [key: string]: AugmentedEvent<ApiType>;217 };218 cumulusXcm: {219 220221222223 ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV3TraitsOutcome]>;224 225226227228 InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;229 230231232233 UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;234 235236237 [key: string]: AugmentedEvent<ApiType>;238 };239 dmpQueue: {240 241242243 ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV3TraitsOutcome], { messageId: U8aFixed, outcome: XcmV3TraitsOutcome }>;244 245246247 InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;248 249250251 MaxMessagesExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;252 253254255 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight }>;256 257258259 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight], { overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight }>;260 261262263 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;264 265266267 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight }>;268 269270271 [key: string]: AugmentedEvent<ApiType>;272 };273 ethereum: {274 275276277 Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason }>;278 279280281 [key: string]: AugmentedEvent<ApiType>;282 };283 evm: {284 285286287 Created: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;288 289290291 CreatedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;292 293294295 Executed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;296 297298299 ExecutedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;300 301302303 Log: AugmentedEvent<ApiType, [log: EthereumLog], { log: EthereumLog }>;304 305306307 [key: string]: AugmentedEvent<ApiType>;308 };309 evmContractHelpers: {310 311312313 ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;314 315316317 ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;318 319320321 ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;322 323324325 [key: string]: AugmentedEvent<ApiType>;326 };327 evmMigration: {328 329330331 TestEvent: AugmentedEvent<ApiType, []>;332 333334335 [key: string]: AugmentedEvent<ApiType>;336 };337 foreignAssets: {338 339340341 AssetRegistered: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;342 343344345 AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;346 347348349 ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;350 351352353 ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;354 355356357 [key: string]: AugmentedEvent<ApiType>;358 };359 identity: {360 361362363 IdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;364 365366367 IdentitiesRemoved: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;368 369370371 IdentityCleared: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;372 373374375 IdentityKilled: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;376 377378379 IdentitySet: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;380 381382383 JudgementGiven: AugmentedEvent<ApiType, [target: AccountId32, registrarIndex: u32], { target: AccountId32, registrarIndex: u32 }>;384 385386387 JudgementRequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;388 389390391 JudgementUnrequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;392 393394395 RegistrarAdded: AugmentedEvent<ApiType, [registrarIndex: u32], { registrarIndex: u32 }>;396 397398399 SubIdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;400 401402403 SubIdentityAdded: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;404 405406407 SubIdentityRemoved: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;408 409410411412 SubIdentityRevoked: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;413 414415416 [key: string]: AugmentedEvent<ApiType>;417 };418 maintenance: {419 MaintenanceDisabled: AugmentedEvent<ApiType, []>;420 MaintenanceEnabled: AugmentedEvent<ApiType, []>;421 422423424 [key: string]: AugmentedEvent<ApiType>;425 };426 parachainSystem: {427 428429430 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: SpWeightsWeightV2Weight, dmqHead: H256], { weightUsed: SpWeightsWeightV2Weight, dmqHead: H256 }>;431 432433434 DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;435 436437438 UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;439 440441442 UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;443 444445446 ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;447 448449450 ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;451 452453454 ValidationFunctionStored: AugmentedEvent<ApiType, []>;455 456457458 [key: string]: AugmentedEvent<ApiType>;459 };460 polkadotXcm: {461 462463464465466 AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;467 468469470471472 AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;473 474475476477478 Attempted: AugmentedEvent<ApiType, [XcmV3TraitsOutcome]>;479 480481482483484 FeesPaid: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;485 486487488489490491492 InvalidQuerier: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;493 494495496497498499500501502503504 InvalidQuerierVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;505 506507508509510511512 InvalidResponder: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;513 514515516517518519520521522523524 InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;525 526527528529530531 Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;532 533534535536537538539 NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;540 541542543544545546 NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;547 548549550551552553554 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;555 556557558559560561 NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;562 563564565566567568 NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3TraitsError]>;569 570571572573574575 ResponseReady: AugmentedEvent<ApiType, [u64, XcmV3Response]>;576 577578579580581 ResponseTaken: AugmentedEvent<ApiType, [u64]>;582 583584585586587 Sent: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;588 589590591592593594 SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32]>;595 596597598599600601602 UnexpectedResponse: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;603 604605606607608609610 VersionChangeNotified: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;611 612613614615616 VersionNotifyRequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;617 618619620621622623 VersionNotifyStarted: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;624 625626627628629 VersionNotifyUnrequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;630 631632633 [key: string]: AugmentedEvent<ApiType>;634 };635 preimage: {636 637638639 Cleared: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;640 641642643 Noted: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;644 645646647 Requested: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;648 649650651 [key: string]: AugmentedEvent<ApiType>;652 };653 session: {654 655656657658 NewSession: AugmentedEvent<ApiType, [sessionIndex: u32], { sessionIndex: u32 }>;659 660661662 [key: string]: AugmentedEvent<ApiType>;663 };664 structure: {665 666667668 Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;669 670671672 [key: string]: AugmentedEvent<ApiType>;673 };674 sudo: {675 676677678 KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;679 680681682 Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;683 684685686 SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;687 688689690 [key: string]: AugmentedEvent<ApiType>;691 };692 system: {693 694695696 CodeUpdated: AugmentedEvent<ApiType, []>;697 698699700 ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;701 702703704 ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;705 706707708 KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;709 710711712 NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;713 714715716 Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;717 718719720 [key: string]: AugmentedEvent<ApiType>;721 };722 testUtils: {723 BatchCompleted: AugmentedEvent<ApiType, []>;724 ShouldRollback: AugmentedEvent<ApiType, []>;725 ValueIsSet: AugmentedEvent<ApiType, []>;726 727728729 [key: string]: AugmentedEvent<ApiType>;730 };731 tokens: {732 733734735 BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128 }>;736 737738739 Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;740 741742743744 DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;745 746747748 Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;749 750751752 Locked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;753 754755756 LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32 }>;757 758759760 LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;761 762763764 Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;765 766767768769 ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;770 771772773 Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;774 775776777 TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, amount: u128], { currencyId: PalletForeignAssetsAssetIds, amount: u128 }>;778 779780781 Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;782 783784785 Unlocked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;786 787788789 Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;790 791792793 Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;794 795796797 [key: string]: AugmentedEvent<ApiType>;798 };799 transactionPayment: {800 801802803804 TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;805 806807808 [key: string]: AugmentedEvent<ApiType>;809 };810 treasury: {811 812813814 Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;815 816817818 Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;819 820821822 Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;823 824825826 Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;827 828829830 Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;831 832833834 Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;835 836837838 SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;839 840841842 Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;843 844845846 UpdatedInactive: AugmentedEvent<ApiType, [reactivated: u128, deactivated: u128], { reactivated: u128, deactivated: u128 }>;847 848849850 [key: string]: AugmentedEvent<ApiType>;851 };852 vesting: {853 854855856 Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;857 858859860 VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;861 862863864 VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;865 866867868 [key: string]: AugmentedEvent<ApiType>;869 };870 xcmpQueue: {871 872873874 BadFormat: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;875 876877878 BadVersion: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;879 880881882 Fail: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<U8aFixed>, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight }>;883 884885886 OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight], { sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight }>;887 888889890 OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: SpWeightsWeightV2Weight], { index: u64, used: SpWeightsWeightV2Weight }>;891 892893894 Success: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, weight: SpWeightsWeightV2Weight], { messageHash: Option<U8aFixed>, weight: SpWeightsWeightV2Weight }>;895 896897898 XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;899 900901902 [key: string]: AugmentedEvent<ApiType>;903 };904 xTokens: {905 906907908 TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV3MultiassetMultiAssets, fee: XcmV3MultiAsset, dest: XcmV3MultiLocation], { sender: AccountId32, assets: XcmV3MultiassetMultiAssets, fee: XcmV3MultiAsset, dest: XcmV3MultiLocation }>;909 910911912 [key: string]: AugmentedEvent<ApiType>;913 };914 } 915}