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, 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 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, XcmV2TraitsOutcome]>;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: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;244 245246247 InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;248 249250251 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight }>;252 253254255 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight], { overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight }>;256 257258259 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;260 261262263 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight }>;264 265266267 [key: string]: AugmentedEvent<ApiType>;268 };269 ethereum: {270 271272273 Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason }>;274 275276277 [key: string]: AugmentedEvent<ApiType>;278 };279 evm: {280 281282283 Created: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;284 285286287 CreatedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;288 289290291 Executed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;292 293294295 ExecutedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;296 297298299 Log: AugmentedEvent<ApiType, [log: EthereumLog], { log: EthereumLog }>;300 301302303 [key: string]: AugmentedEvent<ApiType>;304 };305 evmContractHelpers: {306 307308309 ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;310 311312313 ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;314 315316317 ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;318 319320321 [key: string]: AugmentedEvent<ApiType>;322 };323 evmMigration: {324 325326327 TestEvent: AugmentedEvent<ApiType, []>;328 329330331 [key: string]: AugmentedEvent<ApiType>;332 };333 foreignAssets: {334 335336337 AssetRegistered: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;338 339340341 AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;342 343344345 ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;346 347348349 ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;350 351352353 [key: string]: AugmentedEvent<ApiType>;354 };355 identity: {356 357358359 IdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;360 361362363 IdentitiesRemoved: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;364 365366367 IdentityCleared: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;368 369370371 IdentityKilled: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;372 373374375 IdentitySet: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;376 377378379 JudgementGiven: AugmentedEvent<ApiType, [target: AccountId32, registrarIndex: u32], { target: AccountId32, registrarIndex: u32 }>;380 381382383 JudgementRequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;384 385386387 JudgementUnrequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;388 389390391 RegistrarAdded: AugmentedEvent<ApiType, [registrarIndex: u32], { registrarIndex: u32 }>;392 393394395 SubIdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;396 397398399 SubIdentityAdded: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;400 401402403 SubIdentityRemoved: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;404 405406407408 SubIdentityRevoked: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;409 410411412 [key: string]: AugmentedEvent<ApiType>;413 };414 maintenance: {415 MaintenanceDisabled: AugmentedEvent<ApiType, []>;416 MaintenanceEnabled: AugmentedEvent<ApiType, []>;417 418419420 [key: string]: AugmentedEvent<ApiType>;421 };422 parachainSystem: {423 424425426 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: SpWeightsWeightV2Weight, dmqHead: H256], { weightUsed: SpWeightsWeightV2Weight, dmqHead: H256 }>;427 428429430 DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;431 432433434 UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;435 436437438 ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;439 440441442 ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;443 444445446 ValidationFunctionStored: AugmentedEvent<ApiType, []>;447 448449450 [key: string]: AugmentedEvent<ApiType>;451 };452 polkadotXcm: {453 454455456457458 AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;459 460461462463464 AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;465 466467468469470 Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;471 472473474475476477478 InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;479 480481482483484485486487488489490 InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;491 492493494495496497 Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;498 499500501502503504505 NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;506 507508509510511512 NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;513 514515516517518519520 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;521 522523524525526527 NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;528 529530531532533534 NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;535 536537538539540541 ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;542 543544545546547 ResponseTaken: AugmentedEvent<ApiType, [u64]>;548 549550551552553 Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;554 555556557558559560 SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;561 562563564565566567568 UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;569 570571572573574 VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;575 576577578 [key: string]: AugmentedEvent<ApiType>;579 };580 preimage: {581 582583584 Cleared: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;585 586587588 Noted: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;589 590591592 Requested: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;593 594595596 [key: string]: AugmentedEvent<ApiType>;597 };598 session: {599 600601602603 NewSession: AugmentedEvent<ApiType, [sessionIndex: u32], { sessionIndex: u32 }>;604 605606607 [key: string]: AugmentedEvent<ApiType>;608 };609 structure: {610 611612613 Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;614 615616617 [key: string]: AugmentedEvent<ApiType>;618 };619 sudo: {620 621622623 KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;624 625626627 Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;628 629630631 SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;632 633634635 [key: string]: AugmentedEvent<ApiType>;636 };637 system: {638 639640641 CodeUpdated: AugmentedEvent<ApiType, []>;642 643644645 ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;646 647648649 ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;650 651652653 KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;654 655656657 NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;658 659660661 Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;662 663664665 [key: string]: AugmentedEvent<ApiType>;666 };667 testUtils: {668 BatchCompleted: AugmentedEvent<ApiType, []>;669 ShouldRollback: AugmentedEvent<ApiType, []>;670 ValueIsSet: AugmentedEvent<ApiType, []>;671 672673674 [key: string]: AugmentedEvent<ApiType>;675 };676 tokens: {677 678679680 BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128 }>;681 682683684 Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;685 686687688689 DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;690 691692693 Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;694 695696697 LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32 }>;698 699700701 LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;702 703704705 Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;706 707708709710 ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;711 712713714 Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;715 716717718 TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, amount: u128], { currencyId: PalletForeignAssetsAssetIds, amount: u128 }>;719 720721722 Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;723 724725726 Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;727 728729730 Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;731 732733734 [key: string]: AugmentedEvent<ApiType>;735 };736 transactionPayment: {737 738739740741 TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;742 743744745 [key: string]: AugmentedEvent<ApiType>;746 };747 treasury: {748 749750751 Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;752 753754755 Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;756 757758759 Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;760 761762763 Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;764 765766767 Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;768 769770771 Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;772 773774775 SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;776 777778779 Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;780 781782783 UpdatedInactive: AugmentedEvent<ApiType, [reactivated: u128, deactivated: u128], { reactivated: u128, deactivated: u128 }>;784 785786787 [key: string]: AugmentedEvent<ApiType>;788 };789 vesting: {790 791792793 Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;794 795796797 VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;798 799800801 VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;802 803804805 [key: string]: AugmentedEvent<ApiType>;806 };807 xcmpQueue: {808 809810811 BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;812 813814815 BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;816 817818819 Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight }>;820 821822823 OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight], { sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight }>;824 825826827 OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: SpWeightsWeightV2Weight], { index: u64, used: SpWeightsWeightV2Weight }>;828 829830831 Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, weight: SpWeightsWeightV2Weight }>;832 833834835 UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;836 837838839 XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;840 841842843 [key: string]: AugmentedEvent<ApiType>;844 };845 xTokens: {846 847848849 TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation], { sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation }>;850 851852853 [key: string]: AugmentedEvent<ApiType>;854 };855 } 856}