import '@polkadot/api-base/types/events'; import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types'; import type { Bytes, Null, Option, Result, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec'; import type { ITuple } from '@polkadot/types-codec/types'; import type { EthereumAddress } from '@polkadot/types/interfaces/eth'; import type { AccountId32, H256, Perbill } from '@polkadot/types/interfaces/runtime'; import type { FrameSupportDispatchPostDispatchInfo, FrameSupportMessagesProcessMessageError, FrameSupportPreimagesBounded, FrameSupportTokensMiscBalanceStatus, FrameSystemDispatchEventInfo, PalletBalancesUnexpectedKind, PalletConvictionVotingTally, PalletConvictionVotingVoteAccountVote, PalletElectionProviderMultiPhaseElectionCompute, PalletElectionProviderMultiPhasePhase, PalletMultisigTimepoint, PalletNominationPoolsClaimPermission, PalletNominationPoolsCommissionChangeRate, PalletNominationPoolsCommissionClaimPermission, PalletNominationPoolsPoolState, PalletProxyDepositKind, PalletRcMigratorMigrationSettings, PalletRcMigratorMigrationStage, PalletRcMigratorQueuePriority, PalletStakingAsyncAhClientUnexpectedKind, PalletStakingForcing, PalletStakingRewardDestination, PalletStakingValidatorPrefs, PalletStateTrieMigrationError, PalletStateTrieMigrationMigrationCompute, PolkadotParachainPrimitivesPrimitivesHrmpChannelId, PolkadotPrimitivesVstagingCandidateReceiptV2, PolkadotRuntimeCommonImplsVersionedLocatableAsset, PolkadotRuntimeConstantsProxyProxyType, PolkadotRuntimeParachainsDisputesDisputeLocation, PolkadotRuntimeParachainsDisputesDisputeResult, PolkadotRuntimeParachainsInclusionAggregateMessageOrigin, SpConsensusGrandpaAppPublic, SpNposElectionsElectionScore, SpRuntimeDispatchError, SpRuntimeDispatchErrorWithPostInfo, SpWeightsWeightV2Weight, StagingXcmV5AssetAssets, StagingXcmV5Location, StagingXcmV5Response, StagingXcmV5TraitsOutcome, StagingXcmV5Xcm, XcmV3MaybeErrorCode, XcmV3TraitsSendError, XcmV5TraitsError, XcmVersionedAssets, XcmVersionedLocation } from '@polkadot/types/lookup'; export type __AugmentedEvent = AugmentedEvent; declare module '@polkadot/api-base/types/events' { interface AugmentedEvents { assetRate: { AssetRateCreated: AugmentedEvent; AssetRateRemoved: AugmentedEvent; AssetRateUpdated: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; auctions: { /** * An auction ended. All funds become unreserved. **/ AuctionClosed: AugmentedEvent; /** * An auction started. Provides its index and the block number where it will begin to * close and the first lease period of the quadruplet that is auctioned. **/ AuctionStarted: AugmentedEvent; /** * A new bid has been accepted as the current winner. **/ BidAccepted: AugmentedEvent; /** * Someone attempted to lease the same slot twice for a parachain. The amount is held in * reserve but no parachain slot has been leased. **/ ReserveConfiscated: AugmentedEvent; /** * Funds were reserved for a winning bid. First balance is the extra amount reserved. * Second is the total. **/ Reserved: AugmentedEvent; /** * Funds were unreserved since bidder is no longer active. `[bidder, amount]` **/ Unreserved: AugmentedEvent; /** * The winning offset was chosen for an auction. This will map into the `Winning` storage * map. **/ WinningOffset: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; balances: { /** * A balance was set by root. **/ BalanceSet: AugmentedEvent; /** * Some amount was burned from an account. **/ Burned: AugmentedEvent; /** * Some amount was deposited (e.g. for transaction fees). **/ Deposit: AugmentedEvent; /** * An account was removed whose balance was non-zero but below ExistentialDeposit, * resulting in an outright loss. **/ DustLost: AugmentedEvent; /** * An account was created with some free balance. **/ Endowed: AugmentedEvent; /** * Some balance was frozen. **/ Frozen: AugmentedEvent; /** * Total issuance was increased by `amount`, creating a credit to be balanced. **/ Issued: AugmentedEvent; /** * Some balance was locked. **/ Locked: AugmentedEvent; /** * Some amount was minted into an account. **/ Minted: AugmentedEvent; /** * Total issuance was decreased by `amount`, creating a debt to be balanced. **/ Rescinded: AugmentedEvent; /** * Some balance was reserved (moved from free to reserved). **/ Reserved: AugmentedEvent; /** * Some balance was moved from the reserve of the first account to the second account. * Final argument indicates the destination balance type. **/ ReserveRepatriated: AugmentedEvent; /** * Some amount was restored into an account. **/ Restored: AugmentedEvent; /** * Some amount was removed from the account (e.g. for misbehavior). **/ Slashed: AugmentedEvent; /** * Some amount was suspended from an account (it can be restored later). **/ Suspended: AugmentedEvent; /** * Some balance was thawed. **/ Thawed: AugmentedEvent; /** * The `TotalIssuance` was forcefully changed. **/ TotalIssuanceForced: AugmentedEvent; /** * Transfer succeeded. **/ Transfer: AugmentedEvent; /** * An unexpected/defensive event was triggered. **/ Unexpected: AugmentedEvent; /** * Some balance was unlocked. **/ Unlocked: AugmentedEvent; /** * Some balance was unreserved (moved from reserved to free). **/ Unreserved: AugmentedEvent; /** * An account was upgraded. **/ Upgraded: AugmentedEvent; /** * Some amount was withdrawn from the account (e.g. for transaction fees). **/ Withdraw: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; bounties: { /** * A bounty is approved. **/ BountyApproved: AugmentedEvent; /** * A bounty is awarded to a beneficiary. **/ BountyAwarded: AugmentedEvent; /** * A bounty proposal is funded and became active. **/ BountyBecameActive: AugmentedEvent; /** * A bounty is cancelled. **/ BountyCanceled: AugmentedEvent; /** * A bounty is claimed by beneficiary. **/ BountyClaimed: AugmentedEvent; /** * A bounty expiry is extended. **/ BountyExtended: AugmentedEvent; /** * New bounty proposal. **/ BountyProposed: AugmentedEvent; /** * A bounty proposal was rejected; funds were slashed. **/ BountyRejected: AugmentedEvent; /** * A bounty curator is accepted. **/ CuratorAccepted: AugmentedEvent; /** * A bounty curator is proposed. **/ CuratorProposed: AugmentedEvent; /** * A bounty curator is unassigned. **/ CuratorUnassigned: AugmentedEvent; /** * A bounty deposit has been poked. **/ DepositPoked: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; childBounties: { /** * A child-bounty is added. **/ Added: AugmentedEvent; /** * A child-bounty is awarded to a beneficiary. **/ Awarded: AugmentedEvent; /** * A child-bounty is cancelled. **/ Canceled: AugmentedEvent; /** * A child-bounty is claimed by beneficiary. **/ Claimed: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; claims: { /** * Someone claimed some DOTs. **/ Claimed: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; convictionVoting: { /** * An account has delegated their vote to another account. \[who, target\] **/ Delegated: AugmentedEvent; /** * An \[account\] has cancelled a previous delegation operation. **/ Undelegated: AugmentedEvent; /** * An account has voted **/ Voted: AugmentedEvent; /** * A vote has been removed **/ VoteRemoved: AugmentedEvent; /** * The lockup period of a conviction vote expired, and the funds have been unlocked. **/ VoteUnlocked: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; coretime: { /** * A core has received a new assignment from the broker chain. **/ CoreAssigned: AugmentedEvent; /** * The broker chain has asked for revenue information for a specific block. **/ RevenueInfoRequested: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; crowdloan: { /** * A parachain has been moved to `NewRaise` **/ AddedToNewRaise: AugmentedEvent; /** * All loans in a fund have been refunded. **/ AllRefunded: AugmentedEvent; /** * Contributed to a crowd sale. **/ Contributed: AugmentedEvent; /** * Create a new crowdloaning campaign. **/ Created: AugmentedEvent; /** * Fund is dissolved. **/ Dissolved: AugmentedEvent; /** * The configuration to a crowdloan has been edited. **/ Edited: AugmentedEvent; /** * The result of trying to submit a new bid to the Slots pallet. **/ HandleBidResult: AugmentedEvent], { paraId: u32; result: Result; }>; /** * A memo has been updated. **/ MemoUpdated: AugmentedEvent; /** * The loans in a fund have been partially dissolved, i.e. there are some left * over child keys that still need to be killed. **/ PartiallyRefunded: AugmentedEvent; /** * Withdrew full balance of a contributor. **/ Withdrew: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; delegatedStaking: { /** * Funds delegated by a delegator. **/ Delegated: AugmentedEvent; /** * Unclaimed delegation funds migrated to delegator. **/ MigratedDelegation: AugmentedEvent; /** * Funds released to a delegator. **/ Released: AugmentedEvent; /** * Funds slashed from a delegator. **/ Slashed: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; electionProviderMultiPhase: { /** * An election failed. * * Not much can be said about which computes failed in the process. **/ ElectionFailed: AugmentedEvent; /** * The election has been finalized, with the given computation and score. **/ ElectionFinalized: AugmentedEvent; /** * There was a phase transition in a given round. **/ PhaseTransitioned: AugmentedEvent; /** * An account has been rewarded for their signed submission being finalized. **/ Rewarded: AugmentedEvent; /** * An account has been slashed for submitting an invalid signed submission. **/ Slashed: AugmentedEvent; /** * A solution was stored with the given compute. * * The `origin` indicates the origin of the solution. If `origin` is `Some(AccountId)`, * the stored solution was submitted in the signed phase by a miner with the `AccountId`. * Otherwise, the solution was stored either during the unsigned phase or by * `T::ForceOrigin`. The `bool` is `true` when a previous solution was ejected to make * room for this one. **/ SolutionStored: AugmentedEvent, prevEjected: bool], { compute: PalletElectionProviderMultiPhaseElectionCompute; origin: Option; prevEjected: bool; }>; /** * Generic event **/ [key: string]: AugmentedEvent; }; fastUnstake: { /** * A batch was partially checked for the given eras, but the process did not finish. **/ BatchChecked: AugmentedEvent], { eras: Vec; }>; /** * A batch of a given size was terminated. * * This is always follows by a number of `Unstaked` or `Slashed` events, marking the end * of the batch. A new batch will be created upon next block. **/ BatchFinished: AugmentedEvent; /** * An internal error happened. Operations will be paused now. **/ InternalError: AugmentedEvent; /** * A staker was slashed for requesting fast-unstake whilst being exposed. **/ Slashed: AugmentedEvent; /** * A staker was unstaked. **/ Unstaked: AugmentedEvent], { stash: AccountId32; result: Result; }>; /** * Generic event **/ [key: string]: AugmentedEvent; }; grandpa: { /** * New authority set has been applied. **/ NewAuthorities: AugmentedEvent>], { authoritySet: Vec>; }>; /** * Current authority set has been paused. **/ Paused: AugmentedEvent; /** * Current authority set has been resumed. **/ Resumed: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; historical: { /** * The merkle roots of up to this session index were pruned **/ RootsPruned: AugmentedEvent; /** * The merkle root of the validators of the said session were stored **/ RootStored: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; hrmp: { /** * HRMP channel closed. **/ ChannelClosed: AugmentedEvent; /** * An HRMP channel was opened via Root origin. **/ HrmpChannelForceOpened: AugmentedEvent; /** * An HRMP channel was opened with a system chain. **/ HrmpSystemChannelOpened: AugmentedEvent; /** * Open HRMP channel accepted. **/ OpenChannelAccepted: AugmentedEvent; /** * An HRMP channel request sent by the receiver was canceled by either party. **/ OpenChannelCanceled: AugmentedEvent; /** * An HRMP channel's deposits were updated. **/ OpenChannelDepositsUpdated: AugmentedEvent; /** * Open HRMP channel requested. **/ OpenChannelRequested: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; indices: { /** * A deposit to reserve an index has been poked/reconsidered. **/ DepositPoked: AugmentedEvent; /** * A account index was assigned. **/ IndexAssigned: AugmentedEvent; /** * A account index has been freed up (unassigned). **/ IndexFreed: AugmentedEvent; /** * A account index has been frozen to its current account ID. **/ IndexFrozen: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; messageQueue: { /** * Message placed in overweight queue. **/ OverweightEnqueued: AugmentedEvent; /** * This page was reaped. **/ PageReaped: AugmentedEvent; /** * Message is processed. **/ Processed: AugmentedEvent; /** * Message discarded due to an error in the `MessageProcessor` (usually a format error). **/ ProcessingFailed: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; multisig: { /** * The deposit for a multisig operation has been updated/poked. **/ DepositPoked: AugmentedEvent; /** * A multisig operation has been approved by someone. **/ MultisigApproval: AugmentedEvent; /** * A multisig operation has been cancelled. **/ MultisigCancelled: AugmentedEvent; /** * A multisig operation has been executed. **/ MultisigExecuted: AugmentedEvent], { approving: AccountId32; timepoint: PalletMultisigTimepoint; multisig: AccountId32; callHash: U8aFixed; result: Result; }>; /** * A new multisig operation has begun. **/ NewMultisig: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; nominationPools: { /** * A member has became bonded in a pool. **/ Bonded: AugmentedEvent; /** * A pool has been created. **/ Created: AugmentedEvent; /** * A pool has been destroyed. **/ Destroyed: AugmentedEvent; /** * Global parameters regulating nomination pools have been updated. **/ GlobalParamsUpdated: AugmentedEvent, maxMembers: Option, maxMembersPerPool: Option, globalMaxCommission: Option], { minJoinBond: u128; minCreateBond: u128; maxPools: Option; maxMembers: Option; maxMembersPerPool: Option; globalMaxCommission: Option; }>; /** * A pool member's claim permission has been updated. **/ MemberClaimPermissionUpdated: AugmentedEvent; /** * A member has been removed from a pool. * * The removal can be voluntary (withdrawn all unbonded funds) or involuntary (kicked). * Any funds that are still delegated (i.e. dangling delegation) are released and are * represented by `released_balance`. **/ MemberRemoved: AugmentedEvent; /** * A pool's metadata was updated. **/ MetadataUpdated: AugmentedEvent; /** * Topped up deficit in frozen ED of the reward pool. **/ MinBalanceDeficitAdjusted: AugmentedEvent; /** * Claimed excess frozen ED of af the reward pool. **/ MinBalanceExcessAdjusted: AugmentedEvent; /** * A payout has been made to a member. **/ PaidOut: AugmentedEvent; /** * A pool's commission `change_rate` has been changed. **/ PoolCommissionChangeRateUpdated: AugmentedEvent; /** * Pool commission has been claimed. **/ PoolCommissionClaimed: AugmentedEvent; /** * Pool commission claim permission has been updated. **/ PoolCommissionClaimPermissionUpdated: AugmentedEvent], { poolId: u32; permission: Option; }>; /** * A pool's commission setting has been changed. **/ PoolCommissionUpdated: AugmentedEvent>], { poolId: u32; current: Option>; }>; /** * A pool's maximum commission setting has been changed. **/ PoolMaxCommissionUpdated: AugmentedEvent; /** * A pool's nominating account (or the pool's root account) has nominated a validator set * on behalf of the pool. **/ PoolNominationMade: AugmentedEvent; /** * The pool is chilled i.e. no longer nominating. **/ PoolNominatorChilled: AugmentedEvent; /** * The active balance of pool `pool_id` has been slashed to `balance`. **/ PoolSlashed: AugmentedEvent; /** * The roles of a pool have been updated to the given new roles. Note that the depositor * can never change. **/ RolesUpdated: AugmentedEvent, bouncer: Option, nominator: Option], { root: Option; bouncer: Option; nominator: Option; }>; /** * The state of a pool has changed **/ StateChanged: AugmentedEvent; /** * A member has unbonded from their pool. * * - `balance` is the corresponding balance of the number of points that has been * requested to be unbonded (the argument of the `unbond` transaction) from the bonded * pool. * - `points` is the number of points that are issued as a result of `balance` being * dissolved into the corresponding unbonding pool. * - `era` is the era in which the balance will be unbonded. * In the absence of slashing, these values will match. In the presence of slashing, the * number of points that are issued in the unbonding pool will be less than the amount * requested to be unbonded. **/ Unbonded: AugmentedEvent; /** * The unbond pool at `era` of pool `pool_id` has been slashed to `balance`. **/ UnbondingPoolSlashed: AugmentedEvent; /** * A member has withdrawn from their pool. * * The given number of `points` have been dissolved in return of `balance`. * * Similar to `Unbonded` event, in the absence of slashing, the ratio of point to balance * will be 1. **/ Withdrawn: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; offences: { /** * There is an offence reported of the given `kind` happened at the `session_index` and * (kind-specific) time slot. This event is not deposited for duplicate slashes. * \[kind, timeslot\]. **/ Offence: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; onDemand: { /** * An account was given credits. **/ AccountCredited: AugmentedEvent; /** * An order was placed at some spot price amount by orderer ordered_by **/ OnDemandOrderPlaced: AugmentedEvent; /** * The value of the spot price has likely changed **/ SpotPriceSet: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; paraInclusion: { /** * A candidate was backed. `[candidate, head_data]` **/ CandidateBacked: AugmentedEvent; /** * A candidate was included. `[candidate, head_data]` **/ CandidateIncluded: AugmentedEvent; /** * A candidate timed out. `[candidate, head_data]` **/ CandidateTimedOut: AugmentedEvent; /** * Some upward messages have been received and will be processed. **/ UpwardMessagesReceived: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; paras: { /** * A para has been queued to execute pending actions. `para_id` **/ ActionQueued: AugmentedEvent; /** * A new code hash has been authorized for a Para. **/ CodeAuthorized: AugmentedEvent; /** * A code upgrade has been scheduled for a Para. `para_id` **/ CodeUpgradeScheduled: AugmentedEvent; /** * Current code has been updated for a Para. `para_id` **/ CurrentCodeUpdated: AugmentedEvent; /** * Current head has been updated for a Para. `para_id` **/ CurrentHeadUpdated: AugmentedEvent; /** * A new head has been noted for a Para. `para_id` **/ NewHeadNoted: AugmentedEvent; /** * The given validation code was accepted by the PVF pre-checking vote. * `code_hash` `para_id` **/ PvfCheckAccepted: AugmentedEvent; /** * The given validation code was rejected by the PVF pre-checking vote. * `code_hash` `para_id` **/ PvfCheckRejected: AugmentedEvent; /** * The given para either initiated or subscribed to a PVF check for the given validation * code. `code_hash` `para_id` **/ PvfCheckStarted: AugmentedEvent; /** * The upgrade cooldown was removed. **/ UpgradeCooldownRemoved: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; parasDisputes: { /** * A dispute has concluded for or against a candidate. * `\[para id, candidate hash, dispute result\]` **/ DisputeConcluded: AugmentedEvent; /** * A dispute has been initiated. \[candidate hash, dispute location\] **/ DisputeInitiated: AugmentedEvent; /** * A dispute has concluded with supermajority against a candidate. * Block authors should no longer build on top of this head and should * instead revert the block at the given height. This should be the * number of the child of the last known valid block in the chain. **/ Revert: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; preimage: { /** * A preimage has ben cleared. **/ Cleared: AugmentedEvent; /** * A preimage has been noted. **/ Noted: AugmentedEvent; /** * A preimage has been requested. **/ Requested: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; proxy: { /** * An announcement was placed to make a call in the future. **/ Announced: AugmentedEvent; /** * A deposit stored for proxies or announcements was poked / updated. **/ DepositPoked: AugmentedEvent; /** * A proxy was added. **/ ProxyAdded: AugmentedEvent; /** * A proxy was executed correctly, with the given. **/ ProxyExecuted: AugmentedEvent], { result: Result; }>; /** * A proxy was removed. **/ ProxyRemoved: AugmentedEvent; /** * A pure account has been created by new proxy with given * disambiguation index and proxy type. **/ PureCreated: AugmentedEvent; /** * A pure proxy was killed by its spawner. **/ PureKilled: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; rcMigrator: { /** * The accounts to be preserved on Relay Chain were set. **/ AccountsPreserved: AugmentedEvent], { accounts: Vec; }>; /** * The AH UMP queue priority config was set. **/ AhUmpQueuePriorityConfigSet: AugmentedEvent; /** * Whether the AH UMP queue was prioritized for the next block. **/ AhUmpQueuePrioritySet: AugmentedEvent; /** * The Asset Hub Migration finished. * * This event is equivalent to `StageTransition { new: MigrationDone, .. }` but is easier * to understand. The finishing is immediate and affects all events happening * afterwards. **/ AssetHubMigrationFinished: AugmentedEvent; /** * The Asset Hub Migration started and is active until `AssetHubMigrationFinished` is * emitted. * * This event is equivalent to `StageTransition { new: Initializing, .. }` but is easier * to understand. The activation is immediate and affects all events happening * afterwards. **/ AssetHubMigrationStarted: AugmentedEvent; /** * The canceller account id was set. **/ CancellerSet: AugmentedEvent, new_: Option], { old: Option; new_: Option; }>; /** * The manager multisig dispatched something. **/ ManagerMultisigDispatched: AugmentedEvent], { res: Result; }>; /** * The manager multisig received a vote. **/ ManagerMultisigVoted: AugmentedEvent; /** * The manager account id was set. **/ ManagerSet: AugmentedEvent, new_: Option], { old: Option; new_: Option; }>; /** * The RC kept balance was consumed. **/ MigratedBalanceConsumed: AugmentedEvent; /** * The total issuance was recorded. **/ MigratedBalanceRecordSet: AugmentedEvent; /** * The migration was cancelled. **/ MigrationCancelled: AugmentedEvent; /** * The migration was paused. **/ MigrationPaused: AugmentedEvent; /** * The migration settings were set. **/ MigrationSettingsSet: AugmentedEvent, new_: Option], { old: Option; new_: Option; }>; /** * Some pure accounts were indexed for possibly receiving free `Any` proxies. **/ PureAccountsIndexed: AugmentedEvent; /** * A query response has been received. **/ QueryResponseReceived: AugmentedEvent; /** * A stage transition has occurred. **/ StageTransition: AugmentedEvent; /** * The staking elections were paused. **/ StakingElectionsPaused: AugmentedEvent; /** * The unprocessed message buffer size has been set. **/ UnprocessedMsgBufferSet: AugmentedEvent; /** * A XCM message has been resent. **/ XcmResendAttempt: AugmentedEvent], { queryId: u64; sendError: Option; }>; /** * An XCM message was sent. **/ XcmSent: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; referenda: { /** * A referendum has been approved and its proposal has been scheduled. **/ Approved: AugmentedEvent; /** * A referendum has been cancelled. **/ Cancelled: AugmentedEvent; ConfirmAborted: AugmentedEvent; /** * A referendum has ended its confirmation phase and is ready for approval. **/ Confirmed: AugmentedEvent; ConfirmStarted: AugmentedEvent; /** * The decision deposit has been placed. **/ DecisionDepositPlaced: AugmentedEvent; /** * The decision deposit has been refunded. **/ DecisionDepositRefunded: AugmentedEvent; /** * A referendum has moved into the deciding phase. **/ DecisionStarted: AugmentedEvent; /** * A deposit has been slashed. **/ DepositSlashed: AugmentedEvent; /** * A referendum has been killed. **/ Killed: AugmentedEvent; /** * Metadata for a referendum has been cleared. **/ MetadataCleared: AugmentedEvent; /** * Metadata for a referendum has been set. **/ MetadataSet: AugmentedEvent; /** * A proposal has been rejected by referendum. **/ Rejected: AugmentedEvent; /** * The submission deposit has been refunded. **/ SubmissionDepositRefunded: AugmentedEvent; /** * A referendum has been submitted. **/ Submitted: AugmentedEvent; /** * A referendum has been timed out without being decided. **/ TimedOut: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; registrar: { Deregistered: AugmentedEvent; Registered: AugmentedEvent; Reserved: AugmentedEvent; Swapped: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; scheduler: { /** * Agenda is incomplete from `when`. **/ AgendaIncomplete: AugmentedEvent; /** * The call for the provided hash was not found so the task has been aborted. **/ CallUnavailable: AugmentedEvent, id: Option], { task: ITuple<[u32, u32]>; id: Option; }>; /** * Canceled some task. **/ Canceled: AugmentedEvent; /** * Dispatched some task. **/ Dispatched: AugmentedEvent, id: Option, result: Result], { task: ITuple<[u32, u32]>; id: Option; result: Result; }>; /** * The given task was unable to be renewed since the agenda is full at that block. **/ PeriodicFailed: AugmentedEvent, id: Option], { task: ITuple<[u32, u32]>; id: Option; }>; /** * The given task can never be executed since it is overweight. **/ PermanentlyOverweight: AugmentedEvent, id: Option], { task: ITuple<[u32, u32]>; id: Option; }>; /** * Cancel a retry configuration for some task. **/ RetryCancelled: AugmentedEvent, id: Option], { task: ITuple<[u32, u32]>; id: Option; }>; /** * The given task was unable to be retried since the agenda is full at that block or there * was not enough weight to reschedule it. **/ RetryFailed: AugmentedEvent, id: Option], { task: ITuple<[u32, u32]>; id: Option; }>; /** * Set a retry configuration for some task. **/ RetrySet: AugmentedEvent, id: Option, period: u32, retries: u8], { task: ITuple<[u32, u32]>; id: Option; period: u32; retries: u8; }>; /** * Scheduled some task. **/ Scheduled: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; session: { /** * The `NewSession` event in the current block also implies a new validator set to be * queued. **/ NewQueued: AugmentedEvent; /** * New session has happened. Note that the argument is the session index, not the * block number as the type might suggest. **/ NewSession: AugmentedEvent; /** * Validator has been disabled. **/ ValidatorDisabled: AugmentedEvent; /** * Validator has been re-enabled. **/ ValidatorReenabled: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; slots: { /** * A para has won the right to a continuous set of lease periods as a parachain. * First balance is any extra amount reserved on top of the para's existing deposit. * Second balance is the total amount reserved. **/ Leased: AugmentedEvent; /** * A new `[lease_period]` is beginning. **/ NewLeasePeriod: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; staking: { /** * An account has bonded this amount. \[stash, amount\] * * NOTE: This event is only emitted when funds are bonded via a dispatchable. Notably, * it will not be emitted for staking rewards when they are added to stake. **/ Bonded: AugmentedEvent; /** * An account has stopped participating as either a validator or nominator. **/ Chilled: AugmentedEvent; /** * Report of a controller batch deprecation. **/ ControllerBatchDeprecated: AugmentedEvent; /** * Staking balance migrated from locks to holds, with any balance that could not be held * is force withdrawn. **/ CurrencyMigrated: AugmentedEvent; /** * The era payout has been set; the first balance is the validator-payout; the second is * the remainder from the maximum amount of reward. **/ EraPaid: AugmentedEvent; /** * A new force era mode was set. **/ ForceEra: AugmentedEvent; /** * A nominator has been kicked from a validator. **/ Kicked: AugmentedEvent; /** * An old slashing report from a prior era was discarded because it could * not be processed. **/ OldSlashingReportDiscarded: AugmentedEvent; /** * A Page of stakers rewards are getting paid. `next` is `None` if all pages are claimed. **/ PayoutStarted: AugmentedEvent], { eraIndex: u32; validatorStash: AccountId32; page: u32; next: Option; }>; /** * The nominator has been rewarded by this amount to this destination. **/ Rewarded: AugmentedEvent; /** * A staker (validator or nominator) has been slashed by the given amount. **/ Slashed: AugmentedEvent; /** * A slash for the given validator, for the given percentage of their stake, at the given * era as been reported. **/ SlashReported: AugmentedEvent; /** * Targets size limit reached. **/ SnapshotTargetsSizeExceeded: AugmentedEvent; /** * Voters size limit reached. **/ SnapshotVotersSizeExceeded: AugmentedEvent; /** * A new set of stakers was elected. **/ StakersElected: AugmentedEvent; /** * The election failed. No new era is planned. **/ StakingElectionFailed: AugmentedEvent; /** * An account has unbonded this amount. **/ Unbonded: AugmentedEvent; /** * A validator has set their preferences. **/ ValidatorPrefsSet: AugmentedEvent; /** * An account has called `withdraw_unbonded` and removed unbonding chunks worth `Balance` * from the unlocking queue. **/ Withdrawn: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; stakingAhClient: { /** * We could not merge, and therefore dropped a buffered message. * * Note that this event is more resembling an error, but we use an event because in this * pallet we need to mutate storage upon some failures. **/ CouldNotMergeAndDropped: AugmentedEvent; /** * The validator set received is way too small, as per * [`Config::MinimumValidatorSetSize`]. **/ SetTooSmallAndDropped: AugmentedEvent; /** * Something occurred that should never happen under normal operation. Logged as an event * for fail-safe observability. **/ Unexpected: AugmentedEvent; /** * A new validator set has been received. **/ ValidatorSetReceived: AugmentedEvent, leftover: bool], { id: u32; newValidatorSetCount: u32; pruneUpTo: Option; leftover: bool; }>; /** * Generic event **/ [key: string]: AugmentedEvent; }; stateTrieMigration: { /** * The auto migration task finished. **/ AutoMigrationFinished: AugmentedEvent; /** * Migration got halted due to an error or miss-configuration. **/ Halted: AugmentedEvent; /** * Given number of `(top, child)` keys were migrated respectively, with the given * `compute`. **/ Migrated: AugmentedEvent; /** * Some account got slashed by the given amount. **/ Slashed: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; system: { /** * `:code` was updated. **/ CodeUpdated: AugmentedEvent; /** * An extrinsic failed. **/ ExtrinsicFailed: AugmentedEvent; /** * An extrinsic completed successfully. **/ ExtrinsicSuccess: AugmentedEvent; /** * An account was reaped. **/ KilledAccount: AugmentedEvent; /** * A new account was created. **/ NewAccount: AugmentedEvent; /** * An invalid authorized upgrade was rejected while trying to apply it. **/ RejectedInvalidAuthorizedUpgrade: AugmentedEvent; /** * On on-chain remark happened. **/ Remarked: AugmentedEvent; /** * An upgrade was authorized. **/ UpgradeAuthorized: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; transactionPayment: { /** * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee, * has been paid by `who`. **/ TransactionFeePaid: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; treasury: { /** * A new asset spend proposal has been approved. **/ AssetSpendApproved: AugmentedEvent; /** * An approved spend was voided. **/ AssetSpendVoided: AugmentedEvent; /** * Some funds have been allocated. **/ Awarded: AugmentedEvent; /** * Some of our funds have been burnt. **/ Burnt: AugmentedEvent; /** * Some funds have been deposited. **/ Deposit: AugmentedEvent; /** * A payment happened. **/ Paid: AugmentedEvent; /** * A payment failed and can be retried. **/ PaymentFailed: AugmentedEvent; /** * Spending has finished; this is the amount that rolls over until next spend. **/ Rollover: AugmentedEvent; /** * A new spend proposal has been approved. **/ SpendApproved: AugmentedEvent; /** * We have ended a spend period and will now allocate funds. **/ Spending: AugmentedEvent; /** * A spend was processed and removed from the storage. It might have been successfully * paid or it may have expired. **/ SpendProcessed: AugmentedEvent; /** * The inactive funds of the pallet have been updated. **/ UpdatedInactive: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; utility: { /** * Batch of dispatches completed fully with no error. **/ BatchCompleted: AugmentedEvent; /** * Batch of dispatches completed but has errors. **/ BatchCompletedWithErrors: AugmentedEvent; /** * Batch of dispatches did not complete fully. Index of first failing dispatch given, as * well as the error. **/ BatchInterrupted: AugmentedEvent; /** * A call was dispatched. **/ DispatchedAs: AugmentedEvent], { result: Result; }>; /** * The fallback call was dispatched. **/ IfElseFallbackCalled: AugmentedEvent; /** * Main call was dispatched. **/ IfElseMainSuccess: AugmentedEvent; /** * A single item within a Batch of dispatches has completed with no error. **/ ItemCompleted: AugmentedEvent; /** * A single item within a Batch of dispatches has completed with error. **/ ItemFailed: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; vesting: { /** * An \[account\] has become fully vested. **/ VestingCompleted: AugmentedEvent; /** * A vesting schedule has been created. **/ VestingCreated: AugmentedEvent; /** * The amount vested has been updated. This could indicate a change in funds available. * The balance given is the amount which is left unvested (and thus locked). **/ VestingUpdated: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; voterList: { /** * Moved an account from one bag to another. **/ Rebagged: AugmentedEvent; /** * Updated the score of some account to the given amount. **/ ScoreUpdated: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; whitelist: { CallWhitelisted: AugmentedEvent; WhitelistedCallDispatched: AugmentedEvent], { callHash: H256; result: Result; }>; WhitelistedCallRemoved: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; xcmPallet: { /** * `target` removed alias authorization for `aliaser`. **/ AliasAuthorizationRemoved: AugmentedEvent; /** * An `aliaser` location was authorized by `target` to alias it, authorization valid until * `expiry` block number. **/ AliasAuthorized: AugmentedEvent], { aliaser: StagingXcmV5Location; target: StagingXcmV5Location; expiry: Option; }>; /** * `target` removed all alias authorizations. **/ AliasesAuthorizationsRemoved: AugmentedEvent; /** * Some assets have been claimed from an asset trap **/ AssetsClaimed: AugmentedEvent; /** * Some assets have been placed in an asset trap. **/ AssetsTrapped: AugmentedEvent; /** * Execution of an XCM message was attempted. **/ Attempted: AugmentedEvent; /** * Fees were paid from a location for an operation (often for using `SendXcm`). **/ FeesPaid: AugmentedEvent; /** * Expected query response has been received but the querier location of the response does * not match the expected. The query remains registered for a later, valid, response to * be received and acted upon. **/ InvalidQuerier: AugmentedEvent], { origin: StagingXcmV5Location; queryId: u64; expectedQuerier: StagingXcmV5Location; maybeActualQuerier: Option; }>; /** * Expected query response has been received but the expected querier location placed in * storage by this runtime previously cannot be decoded. The query remains registered. * * This is unexpected (since a location placed in storage in a previously executing * runtime should be readable prior to query timeout) and dangerous since the possibly * valid response will be dropped. Manual governance intervention is probably going to be * needed. **/ InvalidQuerierVersion: AugmentedEvent; /** * Expected query response has been received but the origin location of the response does * not match that expected. The query remains registered for a later, valid, response to * be received and acted upon. **/ InvalidResponder: AugmentedEvent], { origin: StagingXcmV5Location; queryId: u64; expectedLocation: Option; }>; /** * Expected query response has been received but the expected origin location placed in * storage by this runtime previously cannot be decoded. The query remains registered. * * This is unexpected (since a location placed in storage in a previously executing * runtime should be readable prior to query timeout) and dangerous since the possibly * valid response will be dropped. Manual governance intervention is probably going to be * needed. **/ InvalidResponderVersion: AugmentedEvent; /** * Query response has been received and query is removed. The registered notification has * been dispatched and executed successfully. **/ Notified: AugmentedEvent; /** * Query response has been received and query is removed. The dispatch was unable to be * decoded into a `Call`; this might be due to dispatch function having a signature which * is not `(origin, QueryId, Response)`. **/ NotifyDecodeFailed: AugmentedEvent; /** * Query response has been received and query is removed. There was a general error with * dispatching the notification call. **/ NotifyDispatchError: AugmentedEvent; /** * Query response has been received and query is removed. The registered notification * could not be dispatched because the dispatch weight is greater than the maximum weight * originally budgeted by this runtime for the query result. **/ NotifyOverweight: AugmentedEvent; /** * A given location which had a version change subscription was dropped owing to an error * migrating the location to our new XCM format. **/ NotifyTargetMigrationFail: AugmentedEvent; /** * A given location which had a version change subscription was dropped owing to an error * sending the notification to it. **/ NotifyTargetSendFail: AugmentedEvent; /** * An XCM message failed to process. **/ ProcessXcmError: AugmentedEvent; /** * Query response has been received and is ready for taking with `take_response`. There is * no registered notification call. **/ ResponseReady: AugmentedEvent; /** * Received query response has been read and removed. **/ ResponseTaken: AugmentedEvent; /** * An XCM message failed to send. **/ SendFailed: AugmentedEvent; /** * An XCM message was sent. **/ Sent: AugmentedEvent; /** * The supported version of a location has been changed. This might be through an * automatic notification or a manual intervention. **/ SupportedVersionChanged: AugmentedEvent; /** * Query response received which does not match a registered query. This may be because a * matching query was never registered, it may be because it is a duplicate response, or * because the query timed out. **/ UnexpectedResponse: AugmentedEvent; /** * An XCM version change notification message has been attempted to be sent. * * The cost of sending it (borne by the chain) is included. **/ VersionChangeNotified: AugmentedEvent; /** * A XCM version migration finished. **/ VersionMigrationFinished: AugmentedEvent; /** * We have requested that a remote chain send us XCM version change notifications. **/ VersionNotifyRequested: AugmentedEvent; /** * A remote has requested XCM version change notification from us and we have honored it. * A version information message is sent to them and its cost is included. **/ VersionNotifyStarted: AugmentedEvent; /** * We have requested that a remote chain stops sending us XCM version change * notifications. **/ VersionNotifyUnrequested: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; } }