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 { AccountId32, H160, H256, Perbill, Permill, Perquintill } from '@polkadot/types/interfaces/runtime'; import type { FrameSupportDispatchPostDispatchInfo, FrameSupportMessagesProcessMessageError, FrameSupportPreimagesBounded, FrameSupportTokensFungibleUnionOfNativeOrWithId, FrameSupportTokensMiscBalanceStatus, FrameSystemDispatchEventInfo, KitchensinkRuntimeOriginCaller, KitchensinkRuntimeProxyType, KitchensinkRuntimeRuntimeParametersKey, KitchensinkRuntimeRuntimeParametersValue, PalletAllianceCid, PalletAllianceUnscrupulousItem, PalletBrokerCoretimeInterfaceCoreAssignment, PalletBrokerRegionId, PalletBrokerScheduleItem, PalletContractsOrigin, PalletConvictionVotingTally, PalletConvictionVotingVoteAccountVote, PalletCoreFellowshipParamsTypeU128, PalletCoreFellowshipWish, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletDemocracyVoteThreshold, PalletElectionProviderMultiPhaseElectionCompute, PalletElectionProviderMultiPhasePhase, PalletImOnlineSr25519AppSr25519Public, PalletMultisigTimepoint, PalletNftsAttributeNamespace, PalletNftsPalletAttributes, PalletNftsPriceWithDirection, PalletNominationPoolsClaimPermission, PalletNominationPoolsCommissionChangeRate, PalletNominationPoolsCommissionClaimPermission, PalletNominationPoolsPoolState, PalletProxyDepositKind, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletSafeModeExitReason, PalletSocietyGroupParams, PalletStakingForcing, PalletStakingRewardDestination, PalletStakingValidatorPrefs, PalletStateTrieMigrationError, PalletStateTrieMigrationMigrationCompute, SpConsensusGrandpaAppPublic, SpNposElectionsElectionScore, SpRuntimeDispatchError, SpRuntimeDispatchErrorWithPostInfo, SpStatementStoreStatement, SpWeightsWeightV2Weight } from '@polkadot/types/lookup'; export type __AugmentedEvent = AugmentedEvent; declare module '@polkadot/api-base/types/events' { interface AugmentedEvents { alliance: { /** * Alliance disbanded. Includes number deleted members and unreserved deposits. **/ AllianceDisbanded: AugmentedEvent; /** * An ally has been elevated to Fellow. **/ AllyElevated: AugmentedEvent; /** * A new announcement has been proposed. **/ Announced: AugmentedEvent; /** * An on-chain announcement has been removed. **/ AnnouncementRemoved: AugmentedEvent; /** * A Fellow abdicated their voting rights. They are now an Ally. **/ FellowAbdicated: AugmentedEvent; /** * A member has been kicked out with its deposit slashed. **/ MemberKicked: AugmentedEvent], { member: AccountId32; slashed: Option; }>; /** * A member has retired with its deposit unreserved. **/ MemberRetired: AugmentedEvent], { member: AccountId32; unreserved: Option; }>; /** * A member gave retirement notice and their retirement period started. **/ MemberRetirementPeriodStarted: AugmentedEvent; /** * Some accounts have been initialized as members (fellows/allies). **/ MembersInitialized: AugmentedEvent, allies: Vec], { fellows: Vec; allies: Vec; }>; /** * An account has been added as an Ally and reserved its deposit. **/ NewAllyJoined: AugmentedEvent, reserved: Option], { ally: AccountId32; nominator: Option; reserved: Option; }>; /** * A new rule has been set. **/ NewRuleSet: AugmentedEvent; /** * Accounts or websites have been added into the list of unscrupulous items. **/ UnscrupulousItemAdded: AugmentedEvent], { items: Vec; }>; /** * Accounts or websites have been removed from the list of unscrupulous items. **/ UnscrupulousItemRemoved: AugmentedEvent], { items: Vec; }>; /** * Generic event **/ [key: string]: AugmentedEvent; }; allianceMotion: { /** * A motion was approved by the required threshold. **/ Approved: AugmentedEvent; /** * A proposal was closed because its threshold was reached or after its duration was up. **/ Closed: AugmentedEvent; /** * A motion was not approved by the required threshold. **/ Disapproved: AugmentedEvent; /** * A motion was executed; result will be `Ok` if it returned without error. **/ Executed: AugmentedEvent], { proposalHash: H256; result: Result; }>; /** * A proposal was killed. **/ Killed: AugmentedEvent; /** * A single member did some action; result will be `Ok` if it returned without error. **/ MemberExecuted: AugmentedEvent], { proposalHash: H256; result: Result; }>; /** * Some cost for storing a proposal was burned. **/ ProposalCostBurned: AugmentedEvent; /** * Some cost for storing a proposal was released. **/ ProposalCostReleased: AugmentedEvent; /** * A motion (given hash) has been proposed (by given account) with a threshold (given * `MemberCount`). **/ Proposed: AugmentedEvent; /** * A motion (given hash) has been voted on by given account, leaving * a tally (yes votes and no votes given respectively as `MemberCount`). **/ Voted: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; assetConversion: { /** * A successful call of the `AddLiquidity` extrinsic will create this event. **/ LiquidityAdded: AugmentedEvent, amount1Provided: u128, amount2Provided: u128, lpToken: u32, lpTokenMinted: u128], { who: AccountId32; mintTo: AccountId32; poolId: ITuple<[FrameSupportTokensFungibleUnionOfNativeOrWithId, FrameSupportTokensFungibleUnionOfNativeOrWithId]>; amount1Provided: u128; amount2Provided: u128; lpToken: u32; lpTokenMinted: u128; }>; /** * A successful call of the `RemoveLiquidity` extrinsic will create this event. **/ LiquidityRemoved: AugmentedEvent, amount1: u128, amount2: u128, lpToken: u32, lpTokenBurned: u128, withdrawalFee: Permill], { who: AccountId32; withdrawTo: AccountId32; poolId: ITuple<[FrameSupportTokensFungibleUnionOfNativeOrWithId, FrameSupportTokensFungibleUnionOfNativeOrWithId]>; amount1: u128; amount2: u128; lpToken: u32; lpTokenBurned: u128; withdrawalFee: Permill; }>; /** * A successful call of the `CreatePool` extrinsic will create this event. **/ PoolCreated: AugmentedEvent, poolAccount: AccountId32, lpToken: u32], { creator: AccountId32; poolId: ITuple<[FrameSupportTokensFungibleUnionOfNativeOrWithId, FrameSupportTokensFungibleUnionOfNativeOrWithId]>; poolAccount: AccountId32; lpToken: u32; }>; /** * Assets have been converted from one to another. **/ SwapCreditExecuted: AugmentedEvent>], { amountIn: u128; amountOut: u128; path: Vec>; }>; /** * Assets have been converted from one to another. Both `SwapExactTokenForToken` * and `SwapTokenForExactToken` will generate this event. **/ SwapExecuted: AugmentedEvent>], { who: AccountId32; sendTo: AccountId32; amountIn: u128; amountOut: u128; path: Vec>; }>; /** * Pool has been touched in order to fulfill operational requirements. **/ Touched: AugmentedEvent, who: AccountId32], { poolId: ITuple<[FrameSupportTokensFungibleUnionOfNativeOrWithId, FrameSupportTokensFungibleUnionOfNativeOrWithId]>; who: AccountId32; }>; /** * Generic event **/ [key: string]: AugmentedEvent; }; assetConversionMigration: { /** * Indicates that a pool has been migrated to the new account ID. **/ MigratedToNewAccount: AugmentedEvent, priorAccount: AccountId32, newAccount: AccountId32], { poolId: ITuple<[FrameSupportTokensFungibleUnionOfNativeOrWithId, FrameSupportTokensFungibleUnionOfNativeOrWithId]>; priorAccount: AccountId32; newAccount: AccountId32; }>; /** * Generic event **/ [key: string]: AugmentedEvent; }; assetConversionTxPayment: { /** * A swap of the refund in native currency back to asset failed. **/ AssetRefundFailed: AugmentedEvent; /** * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee, * has been paid by `who` in an asset `asset_id`. **/ AssetTxFeePaid: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; assetRate: { AssetRateCreated: AugmentedEvent; AssetRateRemoved: AugmentedEvent; AssetRateUpdated: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; assetRewards: { /** * A pool admin was modified. **/ PoolAdminModified: AugmentedEvent; /** * A pool information was cleared after it's completion. **/ PoolCleanedUp: AugmentedEvent; /** * A new reward pool was created. **/ PoolCreated: AugmentedEvent; /** * A pool expiry block was modified by the admin. **/ PoolExpiryBlockModified: AugmentedEvent; /** * A pool reward rate was modified by the admin. **/ PoolRewardRateModified: AugmentedEvent; /** * An account harvested some rewards. **/ RewardsHarvested: AugmentedEvent; /** * An account staked some tokens in a pool. **/ Staked: AugmentedEvent; /** * An account unstaked some tokens from a pool. **/ Unstaked: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; assets: { /** * Accounts were destroyed for given asset. **/ AccountsDestroyed: AugmentedEvent; /** * An approval for account `delegate` was cancelled by `owner`. **/ ApprovalCancelled: AugmentedEvent; /** * Approvals were destroyed for given asset. **/ ApprovalsDestroyed: AugmentedEvent; /** * (Additional) funds have been approved for transfer to a destination account. **/ ApprovedTransfer: AugmentedEvent; /** * Some asset `asset_id` was frozen. **/ AssetFrozen: AugmentedEvent; /** * The min_balance of an asset has been updated by the asset owner. **/ AssetMinBalanceChanged: AugmentedEvent; /** * An asset has had its attributes changed by the `Force` origin. **/ AssetStatusChanged: AugmentedEvent; /** * Some asset `asset_id` was thawed. **/ AssetThawed: AugmentedEvent; /** * Some account `who` was blocked. **/ Blocked: AugmentedEvent; /** * Some assets were destroyed. **/ Burned: AugmentedEvent; /** * Some asset class was created. **/ Created: AugmentedEvent; /** * Some assets were deposited (e.g. for transaction fees). **/ Deposited: AugmentedEvent; /** * An asset class was destroyed. **/ Destroyed: AugmentedEvent; /** * An asset class is in the process of being destroyed. **/ DestructionStarted: AugmentedEvent; /** * Some asset class was force-created. **/ ForceCreated: AugmentedEvent; /** * Some account `who` was frozen. **/ Frozen: AugmentedEvent; /** * Some assets were issued. **/ Issued: AugmentedEvent; /** * Metadata has been cleared for an asset. **/ MetadataCleared: AugmentedEvent; /** * New metadata has been set for an asset. **/ MetadataSet: AugmentedEvent; /** * The owner changed. **/ OwnerChanged: AugmentedEvent; /** * The management team changed. **/ TeamChanged: AugmentedEvent; /** * Some account `who` was thawed. **/ Thawed: AugmentedEvent; /** * Some account `who` was created with a deposit from `depositor`. **/ Touched: AugmentedEvent; /** * Some assets were transferred. **/ Transferred: AugmentedEvent; /** * An `amount` was transferred in its entirety from `owner` to `destination` by * the approved `delegate`. **/ TransferredApproved: AugmentedEvent; /** * Some assets were withdrawn from the account (e.g. for transaction fees). **/ Withdrawn: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; assetsFreezer: { Frozen: AugmentedEvent; Thawed: 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; /** * 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; /** * Generic event **/ [key: string]: AugmentedEvent; }; broker: { /** * A Region has been assigned to a particular task. **/ Assigned: AugmentedEvent; /** * An assignment has been removed from the workplan. **/ AssignmentRemoved: AugmentedEvent; AutoRenewalDisabled: AugmentedEvent; AutoRenewalEnabled: AugmentedEvent; /** * Failed to auto-renew a core, likely due to the payer account not being sufficiently * funded. **/ AutoRenewalFailed: AugmentedEvent], { core: u16; payer: Option; }>; /** * The auto-renewal limit has been reached upon renewing cores. * * This should never happen, given that enable_auto_renew checks for this before enabling * auto-renewal. **/ AutoRenewalLimitReached: AugmentedEvent; /** * Some historical Instantaneous Core Pool Revenue is ready for payout claims. **/ ClaimsReady: AugmentedEvent; /** * Some historical Instantaneous Core Pool contribution record has been dropped. **/ ContributionDropped: AugmentedEvent; /** * A Core has been assigned to one or more tasks and/or the Pool on the Relay-chain. **/ CoreAssigned: AugmentedEvent>], { core: u16; when: u32; assignment: Vec>; }>; /** * The number of cores available for scheduling has changed. **/ CoreCountChanged: AugmentedEvent; /** * A new number of cores has been requested. **/ CoreCountRequested: AugmentedEvent; /** * Some Instantaneous Coretime Pool credit has been purchased. **/ CreditPurchased: AugmentedEvent; /** * Some historical Instantaneous Core Pool payment record has been dropped. **/ HistoryDropped: AugmentedEvent; /** * Some historical Instantaneous Core Pool payment record has been ignored because the * timeslice was already known. Governance may need to intervene. **/ HistoryIgnored: AugmentedEvent; /** * Some historical Instantaneous Core Pool payment record has been initialized. **/ HistoryInitialized: AugmentedEvent; /** * A Region has been converted into two overlapping Regions each of lesser regularity. **/ Interlaced: AugmentedEvent], { oldRegionId: PalletBrokerRegionId; newRegionIds: ITuple<[PalletBrokerRegionId, PalletBrokerRegionId]>; }>; /** * A new lease has been created. **/ Leased: AugmentedEvent; /** * A lease is about to end. **/ LeaseEnding: AugmentedEvent; /** * A lease has been removed. **/ LeaseRemoved: AugmentedEvent; /** * A Region has been split into two non-overlapping Regions. **/ Partitioned: AugmentedEvent], { oldRegionId: PalletBrokerRegionId; newRegionIds: ITuple<[PalletBrokerRegionId, PalletBrokerRegionId]>; }>; /** * A Region has been added to the Instantaneous Coretime Pool. **/ Pooled: AugmentedEvent; /** * Some historical Instantaneous Core Pool payment record has been dropped. **/ PotentialRenewalDropped: AugmentedEvent; /** * A Region of Bulk Coretime has been purchased. **/ Purchased: AugmentedEvent; /** * A Region has been dropped due to being out of date. **/ RegionDropped: AugmentedEvent; /** * The workload of a core has become renewable. **/ Renewable: AugmentedEvent], { core: u16; price: u128; begin: u32; workload: Vec; }>; /** * A workload has been renewed. **/ Renewed: AugmentedEvent], { who: AccountId32; price: u128; oldCore: u16; core: u16; begin: u32; duration: u32; workload: Vec; }>; /** * A reservation for a workload has been cancelled. **/ ReservationCancelled: AugmentedEvent], { index: u32; workload: Vec; }>; /** * There is a new reservation for a workload. **/ ReservationMade: AugmentedEvent], { index: u32; workload: Vec; }>; /** * The act of claiming revenue has begun. **/ RevenueClaimBegun: AugmentedEvent; /** * A particular timeslice has a non-zero claim. **/ RevenueClaimItem: AugmentedEvent; /** * A revenue claim has (possibly only in part) been paid. **/ RevenueClaimPaid: AugmentedEvent], { who: AccountId32; amount: u128; next: Option; }>; /** * A new sale has been initialized. **/ SaleInitialized: AugmentedEvent; /** * The sale rotation has been started and a new sale is imminent. **/ SalesStarted: AugmentedEvent; /** * Ownership of a Region has been transferred. **/ Transferred: AugmentedEvent, owner: Option], { regionId: PalletBrokerRegionId; duration: u32; oldOwner: Option; owner: Option; }>; /** * 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; }; contracts: { /** * A contract was called either by a plain account or another contract. * * # Note * * Please keep in mind that like all events this is only emitted for successful * calls. This is because on failure all storage changes including events are * rolled back. **/ Called: AugmentedEvent; /** * A code with the specified hash was removed. **/ CodeRemoved: AugmentedEvent; /** * Code with the specified hash has been stored. **/ CodeStored: AugmentedEvent; /** * A contract's code was updated. **/ ContractCodeUpdated: AugmentedEvent; /** * A custom event emitted by the contract. **/ ContractEmitted: AugmentedEvent; /** * A contract delegate called a code hash. * * # Note * * Please keep in mind that like all events this is only emitted for successful * calls. This is because on failure all storage changes including events are * rolled back. **/ DelegateCalled: AugmentedEvent; /** * Contract deployed by address at the specified address. **/ Instantiated: AugmentedEvent; /** * Some funds have been transferred and held as storage deposit. **/ StorageDepositTransferredAndHeld: AugmentedEvent; /** * Some storage deposit funds have been transferred and released. **/ StorageDepositTransferredAndReleased: AugmentedEvent; /** * Contract has been removed. * * # Note * * The only way for a contract to be removed and emitting this event is by calling * `seal_terminate`. **/ Terminated: 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; }; coreFellowship: { /** * Member activity flag has been set. **/ ActiveChanged: AugmentedEvent; /** * Member has been demoted to the given (non-zero) rank. **/ Demoted: AugmentedEvent; /** * Some submitted evidence was judged and removed. There may or may not have been a change * to the rank, but in any case, `last_proof` is reset. **/ EvidenceJudged: AugmentedEvent], { who: AccountId32; wish: PalletCoreFellowshipWish; evidence: Bytes; oldRank: u16; newRank: Option; }>; /** * Pre-ranked account has been inducted at their current rank. **/ Imported: AugmentedEvent; /** * Member has begun being tracked in this pallet. **/ Inducted: AugmentedEvent; /** * Member has been removed from being tracked in this pallet (i.e. because rank is now * zero). **/ Offboarded: AugmentedEvent; /** * Parameters for the pallet have changed. **/ ParamsChanged: AugmentedEvent; /** * Member has been promoted to the given rank. **/ Promoted: AugmentedEvent; /** * Member has been proven at their current rank, postponing auto-demotion. **/ Proven: AugmentedEvent; /** * Member has stated evidence of their efforts their request for rank. **/ Requested: AugmentedEvent; /** * A member had its AccountId swapped. **/ Swapped: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; council: { /** * A motion was approved by the required threshold. **/ Approved: AugmentedEvent; /** * A proposal was closed because its threshold was reached or after its duration was up. **/ Closed: AugmentedEvent; /** * A motion was not approved by the required threshold. **/ Disapproved: AugmentedEvent; /** * A motion was executed; result will be `Ok` if it returned without error. **/ Executed: AugmentedEvent], { proposalHash: H256; result: Result; }>; /** * A proposal was killed. **/ Killed: AugmentedEvent; /** * A single member did some action; result will be `Ok` if it returned without error. **/ MemberExecuted: AugmentedEvent], { proposalHash: H256; result: Result; }>; /** * Some cost for storing a proposal was burned. **/ ProposalCostBurned: AugmentedEvent; /** * Some cost for storing a proposal was released. **/ ProposalCostReleased: AugmentedEvent; /** * A motion (given hash) has been proposed (by given account) with a threshold (given * `MemberCount`). **/ Proposed: AugmentedEvent; /** * A motion (given hash) has been voted on by given account, leaving * a tally (yes votes and no votes given respectively as `MemberCount`). **/ Voted: 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; }; democracy: { /** * A proposal_hash has been blacklisted permanently. **/ Blacklisted: AugmentedEvent; /** * A referendum has been cancelled. **/ Cancelled: AugmentedEvent; /** * An account has delegated their vote to another account. **/ Delegated: AugmentedEvent; /** * An external proposal has been tabled. **/ ExternalTabled: AugmentedEvent; /** * Metadata for a proposal or a referendum has been cleared. **/ MetadataCleared: AugmentedEvent; /** * Metadata for a proposal or a referendum has been set. **/ MetadataSet: AugmentedEvent; /** * Metadata has been transferred to new owner. **/ MetadataTransferred: AugmentedEvent; /** * A proposal has been rejected by referendum. **/ NotPassed: AugmentedEvent; /** * A proposal has been approved by referendum. **/ Passed: AugmentedEvent; /** * A proposal got canceled. **/ ProposalCanceled: AugmentedEvent; /** * A motion has been proposed by a public account. **/ Proposed: AugmentedEvent; /** * An account has seconded a proposal **/ Seconded: AugmentedEvent; /** * A referendum has begun. **/ Started: AugmentedEvent; /** * A public proposal has been tabled for referendum vote. **/ Tabled: AugmentedEvent; /** * An account has cancelled a previous delegation operation. **/ Undelegated: AugmentedEvent; /** * An external proposal has been vetoed. **/ Vetoed: AugmentedEvent; /** * An account has voted in a referendum **/ Voted: 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; }; elections: { /** * A candidate was slashed by amount due to failing to obtain a seat as member or * runner-up. * * Note that old members and runners-up are also candidates. **/ CandidateSlashed: AugmentedEvent; /** * Internal error happened while trying to perform election. **/ ElectionError: AugmentedEvent; /** * No (or not enough) candidates existed for this round. This is different from * `NewTerm(\[\])`. See the description of `NewTerm`. **/ EmptyTerm: AugmentedEvent; /** * A member has been removed. This should always be followed by either `NewTerm` or * `EmptyTerm`. **/ MemberKicked: AugmentedEvent; /** * A new term with new_members. This indicates that enough candidates existed to run * the election, not that enough have been elected. The inner value must be examined * for this purpose. A `NewTerm(\[\])` indicates that some candidates got their bond * slashed and none were elected, whilst `EmptyTerm` means that no candidates existed to * begin with. **/ NewTerm: AugmentedEvent>], { newMembers: Vec>; }>; /** * Someone has renounced their candidacy. **/ Renounced: AugmentedEvent; /** * A seat holder was slashed by amount by being forcefully removed from the set. **/ SeatHolderSlashed: AugmentedEvent; /** * 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; }; glutton: { /** * The block length limit has been updated. **/ BlockLengthLimitSet: AugmentedEvent; /** * The computation limit has been updated. **/ ComputationLimitSet: AugmentedEvent; /** * The pallet has been (re)initialized. **/ PalletInitialized: AugmentedEvent; /** * The storage limit has been updated. **/ StorageLimitSet: AugmentedEvent; /** * 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; }; identity: { /** * A username authority was added. **/ AuthorityAdded: AugmentedEvent; /** * A username authority was removed. **/ AuthorityRemoved: AugmentedEvent; /** * A dangling username (as in, a username corresponding to an account that has removed its * identity) has been removed. **/ DanglingUsernameRemoved: AugmentedEvent; /** * A name was cleared, and the given balance returned. **/ IdentityCleared: AugmentedEvent; /** * A name was removed and the given balance slashed. **/ IdentityKilled: AugmentedEvent; /** * A name was set or reset (which will remove all judgements). **/ IdentitySet: AugmentedEvent; /** * A judgement was given by a registrar. **/ JudgementGiven: AugmentedEvent; /** * A judgement was asked from a registrar. **/ JudgementRequested: AugmentedEvent; /** * A judgement request was retracted. **/ JudgementUnrequested: AugmentedEvent; /** * A queued username passed its expiration without being claimed and was removed. **/ PreapprovalExpired: AugmentedEvent; /** * A username was set as a primary and can be looked up from `who`. **/ PrimaryUsernameSet: AugmentedEvent; /** * A registrar was added. **/ RegistrarAdded: AugmentedEvent; /** * An account's sub-identities were set (in bulk). **/ SubIdentitiesSet: AugmentedEvent; /** * A sub-identity was added to an identity and the deposit paid. **/ SubIdentityAdded: AugmentedEvent; /** * A sub-identity was removed from an identity and the deposit freed. **/ SubIdentityRemoved: AugmentedEvent; /** * A given sub-account's associated name was changed by its super-identity. **/ SubIdentityRenamed: AugmentedEvent; /** * A sub-identity was cleared, and the given deposit repatriated from the * main identity account to the sub-identity account. **/ SubIdentityRevoked: AugmentedEvent; /** * A username has been killed. **/ UsernameKilled: AugmentedEvent; /** * A username was queued, but `who` must accept it prior to `expiration`. **/ UsernameQueued: AugmentedEvent; /** * A username has been removed. **/ UsernameRemoved: AugmentedEvent; /** * A username was set for `who`. **/ UsernameSet: AugmentedEvent; /** * A username has been unbound. **/ UsernameUnbound: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; imOnline: { /** * At the end of the session, no offence was committed. **/ AllGood: AugmentedEvent; /** * A new heartbeat was received from `AuthorityId`. **/ HeartbeatReceived: AugmentedEvent; /** * At the end of the session, at least one validator was found to be offline. **/ SomeOffline: AugmentedEvent>], { offline: Vec>; }>; /** * 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; }; lottery: { /** * A new set of calls have been set! **/ CallsUpdated: AugmentedEvent; /** * A lottery has been started! **/ LotteryStarted: AugmentedEvent; /** * A ticket has been bought! **/ TicketBought: AugmentedEvent], { who: AccountId32; callIndex: ITuple<[u8, u8]>; }>; /** * A winner has been chosen! **/ Winner: 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; }; metaTx: { /** * A meta transaction has been dispatched. * * Contains the dispatch result of the meta transaction along with post-dispatch * information. **/ Dispatched: AugmentedEvent], { result: Result; }>; /** * Generic event **/ [key: string]: AugmentedEvent; }; multiBlockMigrations: { /** * The set of historical migrations has been cleared. **/ HistoricCleared: AugmentedEvent], { nextCursor: Option; }>; /** * A migration progressed. **/ MigrationAdvanced: AugmentedEvent; /** * A Migration completed. **/ MigrationCompleted: AugmentedEvent; /** * A Migration failed. * * This implies that the whole upgrade failed and governance intervention is required. **/ MigrationFailed: AugmentedEvent; /** * A migration was skipped since it was already executed in the past. **/ MigrationSkipped: AugmentedEvent; /** * The current runtime upgrade completed. * * This implies that all of its migrations completed successfully as well. **/ UpgradeCompleted: AugmentedEvent; /** * Runtime upgrade failed. * * This is very bad and will require governance intervention. **/ UpgradeFailed: AugmentedEvent; /** * A Runtime upgrade started. * * Its end is indicated by `UpgradeCompleted` or `UpgradeFailed`. **/ UpgradeStarted: 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; }; nftFractionalization: { /** * An NFT was successfully fractionalized. **/ NftFractionalized: AugmentedEvent; /** * An NFT was successfully returned back. **/ NftUnified: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; nfts: { /** * All approvals of an item got cancelled. **/ AllApprovalsCancelled: AugmentedEvent; /** * An approval for a `delegate` account to transfer the `item` of an item * `collection` was cancelled by its `owner`. **/ ApprovalCancelled: AugmentedEvent; /** * Attribute metadata has been cleared for a `collection` or `item`. **/ AttributeCleared: AugmentedEvent, key: Bytes, namespace: PalletNftsAttributeNamespace], { collection: u32; maybeItem: Option; key: Bytes; namespace: PalletNftsAttributeNamespace; }>; /** * New attribute metadata has been set for a `collection` or `item`. **/ AttributeSet: AugmentedEvent, key: Bytes, value: Bytes, namespace: PalletNftsAttributeNamespace], { collection: u32; maybeItem: Option; key: Bytes; value: Bytes; namespace: PalletNftsAttributeNamespace; }>; /** * An `item` was destroyed. **/ Burned: AugmentedEvent; /** * A `collection` has had its config changed by the `Force` origin. **/ CollectionConfigChanged: AugmentedEvent; /** * Some `collection` was locked. **/ CollectionLocked: AugmentedEvent; /** * Max supply has been set for a collection. **/ CollectionMaxSupplySet: AugmentedEvent; /** * Metadata has been cleared for a `collection`. **/ CollectionMetadataCleared: AugmentedEvent; /** * New metadata has been set for a `collection`. **/ CollectionMetadataSet: AugmentedEvent; /** * Mint settings for a collection had changed. **/ CollectionMintSettingsUpdated: AugmentedEvent; /** * A `collection` was created. **/ Created: AugmentedEvent; /** * A `collection` was destroyed. **/ Destroyed: AugmentedEvent; /** * A `collection` was force-created. **/ ForceCreated: AugmentedEvent; /** * An `item` was issued. **/ Issued: AugmentedEvent; /** * A new approval to modify item attributes was added. **/ ItemAttributesApprovalAdded: AugmentedEvent; /** * A new approval to modify item attributes was removed. **/ ItemAttributesApprovalRemoved: AugmentedEvent; /** * An item was bought. **/ ItemBought: AugmentedEvent; /** * Metadata has been cleared for an item. **/ ItemMetadataCleared: AugmentedEvent; /** * New metadata has been set for an item. **/ ItemMetadataSet: AugmentedEvent; /** * The price for the item was removed. **/ ItemPriceRemoved: AugmentedEvent; /** * The price was set for the item. **/ ItemPriceSet: AugmentedEvent], { collection: u32; item: u32; price: u128; whitelistedBuyer: Option; }>; /** * `item` metadata or attributes were locked. **/ ItemPropertiesLocked: AugmentedEvent; /** * An `item` became non-transferable. **/ ItemTransferLocked: AugmentedEvent; /** * An `item` became transferable. **/ ItemTransferUnlocked: AugmentedEvent; /** * Event gets emitted when the `NextCollectionId` gets incremented. **/ NextCollectionIdIncremented: AugmentedEvent], { nextId: Option; }>; /** * The owner changed. **/ OwnerChanged: AugmentedEvent; /** * Ownership acceptance has changed for an account. **/ OwnershipAcceptanceChanged: AugmentedEvent], { who: AccountId32; maybeCollection: Option; }>; /** * A new attribute in the `Pallet` namespace was set for the `collection` or an `item` * within that `collection`. **/ PalletAttributeSet: AugmentedEvent, attribute: PalletNftsPalletAttributes, value: Bytes], { collection: u32; item: Option; attribute: PalletNftsPalletAttributes; value: Bytes; }>; /** * New attributes have been set for an `item` of the `collection`. **/ PreSignedAttributesSet: AugmentedEvent; /** * The deposit for a set of `item`s within a `collection` has been updated. **/ Redeposited: AugmentedEvent], { collection: u32; successfulItems: Vec; }>; /** * The swap was cancelled. **/ SwapCancelled: AugmentedEvent, price: Option, deadline: u32], { offeredCollection: u32; offeredItem: u32; desiredCollection: u32; desiredItem: Option; price: Option; deadline: u32; }>; /** * The swap has been claimed. **/ SwapClaimed: AugmentedEvent, deadline: u32], { sentCollection: u32; sentItem: u32; sentItemOwner: AccountId32; receivedCollection: u32; receivedItem: u32; receivedItemOwner: AccountId32; price: Option; deadline: u32; }>; /** * An `item` swap intent was created. **/ SwapCreated: AugmentedEvent, price: Option, deadline: u32], { offeredCollection: u32; offeredItem: u32; desiredCollection: u32; desiredItem: Option; price: Option; deadline: u32; }>; /** * The management team changed. **/ TeamChanged: AugmentedEvent, admin: Option, freezer: Option], { collection: u32; issuer: Option; admin: Option; freezer: Option; }>; /** * A tip was sent. **/ TipSent: AugmentedEvent; /** * An `item` of a `collection` has been approved by the `owner` for transfer by * a `delegate`. **/ TransferApproved: AugmentedEvent], { collection: u32; item: u32; owner: AccountId32; delegate: AccountId32; deadline: Option; }>; /** * An `item` was transferred. **/ Transferred: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; nis: { /** * A bid was dropped from a queue because of another, more substantial, bid was present. **/ BidDropped: AugmentedEvent; /** * A bid was successfully placed. **/ BidPlaced: AugmentedEvent; /** * A bid was successfully removed (before being accepted). **/ BidRetracted: AugmentedEvent; /** * An automatic funding of the deficit was made. **/ Funded: AugmentedEvent; /** * A bid was accepted. The balance may not be released until expiry. **/ Issued: AugmentedEvent; /** * An receipt has been (at least partially) thawed. **/ Thawed: AugmentedEvent; /** * A receipt was transferred. **/ Transferred: 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; }; parameters: { /** * A Parameter was set. * * Is also emitted when the value was not changed. **/ Updated: AugmentedEvent, newValue: Option], { key: KitchensinkRuntimeRuntimeParametersKey; oldValue: Option; newValue: Option; }>; /** * Generic event **/ [key: string]: AugmentedEvent; }; poolAssets: { /** * Accounts were destroyed for given asset. **/ AccountsDestroyed: AugmentedEvent; /** * An approval for account `delegate` was cancelled by `owner`. **/ ApprovalCancelled: AugmentedEvent; /** * Approvals were destroyed for given asset. **/ ApprovalsDestroyed: AugmentedEvent; /** * (Additional) funds have been approved for transfer to a destination account. **/ ApprovedTransfer: AugmentedEvent; /** * Some asset `asset_id` was frozen. **/ AssetFrozen: AugmentedEvent; /** * The min_balance of an asset has been updated by the asset owner. **/ AssetMinBalanceChanged: AugmentedEvent; /** * An asset has had its attributes changed by the `Force` origin. **/ AssetStatusChanged: AugmentedEvent; /** * Some asset `asset_id` was thawed. **/ AssetThawed: AugmentedEvent; /** * Some account `who` was blocked. **/ Blocked: AugmentedEvent; /** * Some assets were destroyed. **/ Burned: AugmentedEvent; /** * Some asset class was created. **/ Created: AugmentedEvent; /** * Some assets were deposited (e.g. for transaction fees). **/ Deposited: AugmentedEvent; /** * An asset class was destroyed. **/ Destroyed: AugmentedEvent; /** * An asset class is in the process of being destroyed. **/ DestructionStarted: AugmentedEvent; /** * Some asset class was force-created. **/ ForceCreated: AugmentedEvent; /** * Some account `who` was frozen. **/ Frozen: AugmentedEvent; /** * Some assets were issued. **/ Issued: AugmentedEvent; /** * Metadata has been cleared for an asset. **/ MetadataCleared: AugmentedEvent; /** * New metadata has been set for an asset. **/ MetadataSet: AugmentedEvent; /** * The owner changed. **/ OwnerChanged: AugmentedEvent; /** * The management team changed. **/ TeamChanged: AugmentedEvent; /** * Some account `who` was thawed. **/ Thawed: AugmentedEvent; /** * Some account `who` was created with a deposit from `depositor`. **/ Touched: AugmentedEvent; /** * Some assets were transferred. **/ Transferred: AugmentedEvent; /** * An `amount` was transferred in its entirety from `owner` to `destination` by * the approved `delegate`. **/ TransferredApproved: AugmentedEvent; /** * Some assets were withdrawn from the account (e.g. for transaction fees). **/ Withdrawn: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; pov: { TestEvent: 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; /** * Generic event **/ [key: string]: AugmentedEvent; }; rankedCollective: { /** * A member `who` has been added. **/ MemberAdded: AugmentedEvent; /** * The member `who` had their `AccountId` changed to `new_who`. **/ MemberExchanged: AugmentedEvent; /** * The member `who` of given `rank` has been removed from the collective. **/ MemberRemoved: AugmentedEvent; /** * The member `who`se rank has been changed to the given `rank`. **/ RankChanged: AugmentedEvent; /** * The member `who` has voted for the `poll` with the given `vote` leading to an updated * `tally`. **/ Voted: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; rankedPolls: { /** * 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; }; recovery: { /** * Lost account has been successfully recovered by rescuer account. **/ AccountRecovered: AugmentedEvent; /** * A recovery process for lost account by rescuer account has been closed. **/ RecoveryClosed: AugmentedEvent; /** * A recovery process has been set up for an account. **/ RecoveryCreated: AugmentedEvent; /** * A recovery process has been initiated for lost account by rescuer account. **/ RecoveryInitiated: AugmentedEvent; /** * A recovery process has been removed for an account. **/ RecoveryRemoved: AugmentedEvent; /** * A recovery process for lost account by rescuer account has been vouched for by sender. **/ RecoveryVouched: 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; }; remark: { /** * Stored data off chain. **/ Stored: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; revive: { /** * A custom event emitted by the contract. **/ ContractEmitted: AugmentedEvent], { contract: H160; data: Bytes; topics: Vec; }>; /** * Generic event **/ [key: string]: AugmentedEvent; }; rootTesting: { /** * Event dispatched when the trigger_defensive extrinsic is called. **/ DefensiveTestCall: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; safeMode: { /** * Could not hold funds for entering or extending the safe-mode. * * This error comes from the underlying `Currency`. **/ CannotDeposit: AugmentedEvent; /** * Could not release funds for entering or extending the safe-mode. * * This error comes from the underlying `Currency`. **/ CannotRelease: AugmentedEvent; /** * An account reserved funds for either entering or extending the safe-mode. **/ DepositPlaced: AugmentedEvent; /** * An account had a reserve released that was reserved. **/ DepositReleased: AugmentedEvent; /** * An account had reserve slashed that was reserved. **/ DepositSlashed: AugmentedEvent; /** * The safe-mode was entered until inclusively this block. **/ Entered: AugmentedEvent; /** * Exited the safe-mode for a specific reason. **/ Exited: AugmentedEvent; /** * The safe-mode was extended until inclusively this block. **/ Extended: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; salary: { /** * The next cycle begins. **/ CycleStarted: AugmentedEvent; /** * A member is inducted into the payroll. **/ Inducted: AugmentedEvent; /** * A payment happened. **/ Paid: AugmentedEvent; /** * A member registered for a payout. **/ Registered: AugmentedEvent; /** * A member swapped their account. **/ 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: { /** * 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; }; skipFeelessPayment: { /** * A transaction fee was skipped. **/ FeeSkipped: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; society: { /** * A candidate was dropped (due to an excess of bids in the system). **/ AutoUnbid: AugmentedEvent; /** * A membership bid just happened. The given account is the candidate's ID and their offer * is the second. **/ Bid: AugmentedEvent; /** * A candidate has been suspended **/ CandidateSuspended: AugmentedEvent; /** * A member has been challenged **/ Challenged: AugmentedEvent; /** * A vote has been placed for a defending member **/ DefenderVote: AugmentedEvent; /** * Some funds were deposited into the society account. **/ Deposit: AugmentedEvent; /** * A \[member\] got elevated to \[rank\]. **/ Elevated: AugmentedEvent; /** * The society is founded by the given identity. **/ Founded: AugmentedEvent; /** * A group of candidates have been inducted. The batch's primary is the first value, the * batch in full is the second. **/ Inducted: AugmentedEvent], { primary: AccountId32; candidates: Vec; }>; /** * A member has been suspended **/ MemberSuspended: AugmentedEvent; /** * A new set of \[params\] has been set for the group. **/ NewParams: AugmentedEvent; /** * A suspended member has been judged. **/ SuspendedMemberJudgement: AugmentedEvent; /** * A candidate was dropped (by their request). **/ Unbid: AugmentedEvent; /** * Society is unfounded. **/ Unfounded: AugmentedEvent; /** * A candidate was dropped (by request of who vouched for them). **/ Unvouch: AugmentedEvent; /** * A vote has been placed **/ Vote: AugmentedEvent; /** * A membership bid just happened by vouching. The given account is the candidate's ID and * their offer is the second. The vouching party is the third. **/ Vouch: 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; }; statement: { /** * A new statement is submitted **/ NewStatement: AugmentedEvent; /** * 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; }; sudo: { /** * The sudo key has been updated. **/ KeyChanged: AugmentedEvent, new_: AccountId32], { old: Option; new_: AccountId32; }>; /** * The key was permanently removed. **/ KeyRemoved: AugmentedEvent; /** * A sudo call just took place. **/ Sudid: AugmentedEvent], { sudoResult: Result; }>; /** * A [sudo_as](Pallet::sudo_as) call just took place. **/ SudoAsDone: AugmentedEvent], { sudoResult: Result; }>; /** * 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; }; technicalCommittee: { /** * A motion was approved by the required threshold. **/ Approved: AugmentedEvent; /** * A proposal was closed because its threshold was reached or after its duration was up. **/ Closed: AugmentedEvent; /** * A motion was not approved by the required threshold. **/ Disapproved: AugmentedEvent; /** * A motion was executed; result will be `Ok` if it returned without error. **/ Executed: AugmentedEvent], { proposalHash: H256; result: Result; }>; /** * A proposal was killed. **/ Killed: AugmentedEvent; /** * A single member did some action; result will be `Ok` if it returned without error. **/ MemberExecuted: AugmentedEvent], { proposalHash: H256; result: Result; }>; /** * Some cost for storing a proposal was burned. **/ ProposalCostBurned: AugmentedEvent; /** * Some cost for storing a proposal was released. **/ ProposalCostReleased: AugmentedEvent; /** * A motion (given hash) has been proposed (by given account) with a threshold (given * `MemberCount`). **/ Proposed: AugmentedEvent; /** * A motion (given hash) has been voted on by given account, leaving * a tally (yes votes and no votes given respectively as `MemberCount`). **/ Voted: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; technicalMembership: { /** * Phantom member, never used. **/ Dummy: AugmentedEvent; /** * One of the members' keys changed. **/ KeyChanged: AugmentedEvent; /** * The given member was added; see the transaction for who. **/ MemberAdded: AugmentedEvent; /** * The given member was removed; see the transaction for who. **/ MemberRemoved: AugmentedEvent; /** * The membership was reset; see the transaction for who the new set is. **/ MembersReset: AugmentedEvent; /** * Two members were swapped; see the transaction for who. **/ MembersSwapped: AugmentedEvent; /** * Generic event **/ [key: string]: AugmentedEvent; }; tips: { /** * A new tip suggestion has been opened. **/ NewTip: AugmentedEvent; /** * A tip suggestion has been closed. **/ TipClosed: AugmentedEvent; /** * A tip suggestion has reached threshold and is closing. **/ TipClosing: AugmentedEvent; /** * A tip suggestion has been retracted. **/ TipRetracted: AugmentedEvent; /** * A tip suggestion has been slashed. **/ TipSlashed: 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; }; transactionStorage: { /** * Storage proof was successfully checked. **/ ProofChecked: AugmentedEvent; /** * Renewed data under specified index. **/ Renewed: AugmentedEvent; /** * Stored data under specified index. **/ Stored: 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; }; txPause: { /** * This pallet, or a specific call is now paused. **/ CallPaused: AugmentedEvent], { fullName: ITuple<[Bytes, Bytes]>; }>; /** * This pallet, or a specific call is now unpaused. **/ CallUnpaused: AugmentedEvent], { fullName: ITuple<[Bytes, Bytes]>; }>; /** * Generic event **/ [key: string]: AugmentedEvent; }; uniques: { /** * An approval for a `delegate` account to transfer the `item` of an item * `collection` was cancelled by its `owner`. **/ ApprovalCancelled: AugmentedEvent; /** * An `item` of a `collection` has been approved by the `owner` for transfer by * a `delegate`. **/ ApprovedTransfer: AugmentedEvent; /** * Attribute metadata has been cleared for a `collection` or `item`. **/ AttributeCleared: AugmentedEvent, key: Bytes], { collection: u32; maybeItem: Option; key: Bytes; }>; /** * New attribute metadata has been set for a `collection` or `item`. **/ AttributeSet: AugmentedEvent, key: Bytes, value: Bytes], { collection: u32; maybeItem: Option; key: Bytes; value: Bytes; }>; /** * An `item` was destroyed. **/ Burned: AugmentedEvent; /** * Some `collection` was frozen. **/ CollectionFrozen: AugmentedEvent; /** * Max supply has been set for a collection. **/ CollectionMaxSupplySet: AugmentedEvent; /** * Metadata has been cleared for a `collection`. **/ CollectionMetadataCleared: AugmentedEvent; /** * New metadata has been set for a `collection`. **/ CollectionMetadataSet: AugmentedEvent; /** * Some `collection` was thawed. **/ CollectionThawed: AugmentedEvent; /** * A `collection` was created. **/ Created: AugmentedEvent; /** * A `collection` was destroyed. **/ Destroyed: AugmentedEvent; /** * A `collection` was force-created. **/ ForceCreated: AugmentedEvent; /** * Some `item` was frozen. **/ Frozen: AugmentedEvent; /** * An `item` was issued. **/ Issued: AugmentedEvent; /** * An item was bought. **/ ItemBought: AugmentedEvent; /** * The price for the instance was removed. **/ ItemPriceRemoved: AugmentedEvent; /** * The price was set for the instance. **/ ItemPriceSet: AugmentedEvent], { collection: u32; item: u32; price: u128; whitelistedBuyer: Option; }>; /** * A `collection` has had its attributes changed by the `Force` origin. **/ ItemStatusChanged: AugmentedEvent; /** * Metadata has been cleared for an item. **/ MetadataCleared: AugmentedEvent; /** * New metadata has been set for an item. **/ MetadataSet: AugmentedEvent; /** * The owner changed. **/ OwnerChanged: AugmentedEvent; /** * Ownership acceptance has changed for an account. **/ OwnershipAcceptanceChanged: AugmentedEvent], { who: AccountId32; maybeCollection: Option; }>; /** * Metadata has been cleared for an item. **/ Redeposited: AugmentedEvent], { collection: u32; successfulItems: Vec; }>; /** * The management team changed. **/ TeamChanged: AugmentedEvent; /** * Some `item` was thawed. **/ Thawed: AugmentedEvent; /** * An `item` was transferred. **/ Transferred: 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; /** * 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; }; } }