Table of contents
Runtime events
There are 151 events from 35 pallets.
- System - 0
-
An extrinsic completed successfully.ExtrinsicSuccess(dispatch_info)- 0dispatch_info: DispatchEventInfo -
An extrinsic failed.ExtrinsicFailed(dispatch_error, dispatch_info)- 1dispatch_error: DispatchError dispatch_info: DispatchEventInfo -
`:code` was updated.CodeUpdated()- 2no args -
A new account was created.NewAccount(account)- 3account: T::AccountId -
An account was reaped.KilledAccount(account)- 4account: T::AccountId -
On on-chain remark happened.Remarked(sender, hash)- 5sender: T::AccountId hash: T::Hash -
An upgrade was authorized.UpgradeAuthorized(code_hash, check_version)- 6code_hash: T::Hash check_version: bool -
An invalid authorized upgrade was rejected while trying to apply it.RejectedInvalidAuthorizedUpgrade(code_hash, error)- 7code_hash: T::Hash error: DispatchError
-
- Account - 1
-
account linked to identityAccountLinked(who, identity)- 0who: T::AccountId identity: IdtyIdOf<T> -
The account was unlinked from its identity.AccountUnlinked()- 1: T::AccountId
-
- Scheduler - 2
-
Scheduled some task.Scheduled(when, index)- 0when: BlockNumberFor<T> index: u32 -
Canceled some task.Canceled(when, index)- 1when: BlockNumberFor<T> index: u32 -
Dispatched some task.Dispatched(task, id, result)- 2task: TaskAddress<BlockNumberFor<T>> id: Option<TaskName> result: DispatchResult -
Set a retry configuration for some task.RetrySet(task, id, period, retries)- 3task: TaskAddress<BlockNumberFor<T>> id: Option<TaskName> period: BlockNumberFor<T> retries: u8 -
Cancel a retry configuration for some task.RetryCancelled(task, id)- 4task: TaskAddress<BlockNumberFor<T>> id: Option<TaskName> -
The call for the provided hash was not found so the task has been aborted.CallUnavailable(task, id)- 5task: TaskAddress<BlockNumberFor<T>> id: Option<TaskName> -
The given task was unable to be renewed since the agenda is full at that block.PeriodicFailed(task, id)- 6task: TaskAddress<BlockNumberFor<T>> id: Option<TaskName> -
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(task, id)- 7task: TaskAddress<BlockNumberFor<T>> id: Option<TaskName> -
The given task can never be executed since it is overweight.PermanentlyOverweight(task, id)- 8task: TaskAddress<BlockNumberFor<T>> id: Option<TaskName> -
Agenda is incomplete from `when`.AgendaIncomplete(when)- 9when: BlockNumberFor<T>
-
- Babe - 3
- Timestamp - 4
- Parameters - 5
- Balances - 6
-
An account was created with some free balance.Endowed(account, free_balance)- 0account: T::AccountId free_balance: T::Balance -
An account was removed whose balance was non-zero but below ExistentialDeposit, resulting in an outright loss.DustLost(account, amount)- 1account: T::AccountId amount: T::Balance -
Transfer succeeded.Transfer(from, to, amount)- 2from: T::AccountId to: T::AccountId amount: T::Balance -
A balance was set by root.BalanceSet(who, free)- 3who: T::AccountId free: T::Balance -
Some balance was reserved (moved from free to reserved).Reserved(who, amount)- 4who: T::AccountId amount: T::Balance -
Some balance was unreserved (moved from reserved to free).Unreserved(who, amount)- 5who: T::AccountId amount: T::Balance -
Some balance was moved from the reserve of the first account to the second account. Final argument indicates the destination balance type.ReserveRepatriated(from, to, amount, destination_status)- 6from: T::AccountId to: T::AccountId amount: T::Balance destination_status: Status -
Some amount was deposited (e.g. for transaction fees).Deposit(who, amount)- 7who: T::AccountId amount: T::Balance -
Some amount was withdrawn from the account (e.g. for transaction fees).Withdraw(who, amount)- 8who: T::AccountId amount: T::Balance -
Some amount was removed from the account (e.g. for misbehavior).Slashed(who, amount)- 9who: T::AccountId amount: T::Balance -
Some amount was minted into an account.Minted(who, amount)- 10who: T::AccountId amount: T::Balance -
Some amount was burned from an account.Burned(who, amount)- 11who: T::AccountId amount: T::Balance -
Some amount was suspended from an account (it can be restored later).Suspended(who, amount)- 12who: T::AccountId amount: T::Balance -
Some amount was restored into an account.Restored(who, amount)- 13who: T::AccountId amount: T::Balance -
An account was upgraded.Upgraded(who)- 14who: T::AccountId -
Total issuance was increased by `amount`, creating a credit to be balanced.Issued(amount)- 15amount: T::Balance -
Total issuance was decreased by `amount`, creating a debt to be balanced.Rescinded(amount)- 16amount: T::Balance -
Some balance was locked.Locked(who, amount)- 17who: T::AccountId amount: T::Balance -
Some balance was unlocked.Unlocked(who, amount)- 18who: T::AccountId amount: T::Balance -
Some balance was frozen.Frozen(who, amount)- 19who: T::AccountId amount: T::Balance -
Some balance was thawed.Thawed(who, amount)- 20who: T::AccountId amount: T::Balance -
The `TotalIssuance` was forcefully changed.TotalIssuanceForced(old, new)- 21old: T::Balance new: T::Balance
-
- TransactionPayment - 32
-
A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee, has been paid by `who`.TransactionFeePaid(who, actual_fee, tip)- 0who: T::AccountId actual_fee: BalanceOf<T> tip: BalanceOf<T>
-
- OneshotAccount - 7
-
A oneshot account was created.OneshotAccountCreated(account, balance, creator)- 0account: T::AccountId balance: BalanceOf<T> creator: T::AccountId -
A oneshot account was consumed.OneshotAccountConsumed(account, dest1, dest2)- 1account: T::AccountId dest1: (T::AccountId, BalanceOf<T>) dest2: Option<(T::AccountId, BalanceOf<T>)> -
A withdrawal was executed on a oneshot account.Withdraw(account, balance)- 2account: T::AccountId balance: BalanceOf<T>
-
- Quota - 66
-
Transaction fees were refunded.Refunded(who, identity, amount)- 0who: T::AccountId identity: IdtyId<T> amount: BalanceOf<T> -
No more quota available for refund.NoQuotaForIdty()- 1: IdtyId<T> -
No more currency available for refund. This scenario should never occur if the fees are intended for the refund account.NoMoreCurrencyForRefund()- 2no args -
The refund has failed. This scenario should rarely occur, except when the account was destroyed in the interim between the request and the refund.RefundFailed()- 3: T::AccountId -
Refund queue was full.RefundQueueFull()- 4no args
-
- SmithMembers - 10
-
An identity is being inivited to become a smith.InvitationSent(issuer, receiver)- 0issuer: T::IdtyIndex receiver: T::IdtyIndex -
The invitation has been accepted.InvitationAccepted(idty_index)- 1idty_index: T::IdtyIndex -
Certification receivedSmithCertAdded(issuer, receiver)- 2issuer: T::IdtyIndex receiver: T::IdtyIndex -
Certification lostSmithCertRemoved(issuer, receiver)- 3issuer: T::IdtyIndex receiver: T::IdtyIndex -
A smith gathered enough certifications to become an authority (can call `go_online()`).SmithMembershipAdded(idty_index)- 4idty_index: T::IdtyIndex -
A smith has been removed from the smiths set.SmithMembershipRemoved(idty_index)- 5idty_index: T::IdtyIndex
-
- AuthorityMembers - 11
-
List of members scheduled to join the set of authorities in the next session.IncomingAuthorities(members)- 0members: Vec<T::MemberId> -
List of members leaving the set of authorities in the next session.OutgoingAuthorities(members)- 1members: Vec<T::MemberId> -
A member will leave the set of authorities in 2 sessions.MemberGoOffline(member)- 2member: T::MemberId -
A member will join the set of authorities in 2 sessions.MemberGoOnline(member)- 3member: T::MemberId -
A member, who no longer has authority rights, will be removed from the authority set in 2 sessions.MemberRemoved(member)- 4member: T::MemberId -
A member has been removed from the blacklist.MemberRemovedFromBlacklist(member)- 5member: T::MemberId -
A member has been blacklisted.MemberAddedToBlacklist(member)- 6member: T::MemberId
-
- Authorship - 12
- Offences - 13
-
An offense was reported during the specified time slot. This event is not deposited for duplicate slashes.Offence(kind, timeslot)- 0kind: Kind timeslot: OpaqueTimeSlot
-
- Historical - 14
-
The merkle root of the validators of the said session were storedRootStored(index)- 0index: SessionIndex -
The merkle roots of up to this session index were prunedRootsPruned(up_to)- 1up_to: SessionIndex
-
- Session - 15
-
New session has happened. Note that the argument is the session index, not the block number as the type might suggest.NewSession(session_index)- 0session_index: SessionIndex -
The `NewSession` event in the current block also implies a new validator set to be queued.NewQueued()- 1no args -
Validator has been disabled.ValidatorDisabled(validator)- 2validator: T::ValidatorId -
Validator has been re-enabled.ValidatorReenabled(validator)- 3validator: T::ValidatorId
-
- Grandpa - 16
-
New authority set has been applied.NewAuthorities(authority_set)- 0authority_set: AuthorityList -
Current authority set has been paused.Paused()- 1no args -
Current authority set has been resumed.Resumed()- 2no args
-
- ImOnline - 17
-
A new heartbeat was received from `AuthorityId`.HeartbeatReceived(authority_id)- 0authority_id: T::AuthorityId -
At the end of the session, no offence was committed.AllGood()- 1no args -
At the end of the session, at least one validator was found to be offline.SomeOffline(offline)- 2offline: Vec<IdentificationTuple<T>>
-
- AuthorityDiscovery - 18
- Sudo - 20
-
A sudo call just took place.Sudid(sudo_result)- 0sudo_result: DispatchResult -
The sudo key has been updated.KeyChanged(old, new)- 1old: Option<T::AccountId> new: T::AccountId -
The key was permanently removed.KeyRemoved()- 2no args -
A [sudo_as](Pallet::sudo_as) call just took place.SudoAsDone(sudo_result)- 3sudo_result: DispatchResult
-
- UpgradeOrigin - 21
-
A call was dispatched as root from an upgradable originDispatchedAsRoot(result)- 0result: DispatchResult
-
- Preimage - 22
-
A preimage has been noted.Noted(hash)- 0hash: T::Hash -
A preimage has been requested.Requested(hash)- 1hash: T::Hash -
A preimage has ben cleared.Cleared(hash)- 2hash: T::Hash
-
- TechnicalCommittee - 23
-
A motion (given hash) has been proposed (by given account) with a threshold (given `MemberCount`).Proposed(account, proposal_index, proposal_hash, threshold)- 0account: T::AccountId proposal_index: ProposalIndex proposal_hash: T::Hash threshold: MemberCount -
A motion (given hash) has been voted on by given account, leaving a tally (yes votes and no votes given respectively as `MemberCount`).Voted(account, proposal_hash, voted, yes, no)- 1account: T::AccountId proposal_hash: T::Hash voted: bool yes: MemberCount no: MemberCount -
A motion was approved by the required threshold.Approved(proposal_hash)- 2proposal_hash: T::Hash -
A motion was not approved by the required threshold.Disapproved(proposal_hash)- 3proposal_hash: T::Hash -
A motion was executed; result will be `Ok` if it returned without error.Executed(proposal_hash, result)- 4proposal_hash: T::Hash result: DispatchResult -
A single member did some action; result will be `Ok` if it returned without error.MemberExecuted(proposal_hash, result)- 5proposal_hash: T::Hash result: DispatchResult -
A proposal was closed because its threshold was reached or after its duration was up.Closed(proposal_hash, yes, no)- 6proposal_hash: T::Hash yes: MemberCount no: MemberCount -
A proposal was killed.Killed(proposal_hash)- 7proposal_hash: T::Hash -
Some cost for storing a proposal was burned.ProposalCostBurned(proposal_hash, who)- 8proposal_hash: T::Hash who: T::AccountId -
Some cost for storing a proposal was released.ProposalCostReleased(proposal_hash, who)- 9proposal_hash: T::Hash who: T::AccountId
-
- UniversalDividend - 30
-
A new universal dividend is created.NewUdCreated(amount, index, monetary_mass, members_count)- 0amount: BalanceOf<T> index: UdIndex monetary_mass: BalanceOf<T> members_count: BalanceOf<T> -
The universal dividend has been re-evaluated.UdReevalued(new_ud_amount, monetary_mass, members_count)- 1new_ud_amount: BalanceOf<T> monetary_mass: BalanceOf<T> members_count: BalanceOf<T> -
DUs were automatically transferred as part of a member removal.UdsAutoPaid(count, total, who)- 2count: UdIndex total: BalanceOf<T> who: T::AccountId -
A member claimed his UDs.UdsClaimed(count, total, who)- 3count: UdIndex total: BalanceOf<T> who: T::AccountId
-
- Wot - 40
- Identity - 41
-
A new identity has been created.IdtyCreated(idty_index, owner_key)- 0idty_index: T::IdtyIndex owner_key: T::AccountId -
An identity has been confirmed by its owner.IdtyConfirmed(idty_index, name)- 1idty_index: T::IdtyIndex name: IdtyName -
An identity has been validated.IdtyValidated(idty_index)- 2idty_index: T::IdtyIndex -
IdtyChangedOwnerKey(idty_index, new_owner_key)- 3idty_index: T::IdtyIndex new_owner_key: T::AccountId -
An identity has been revoked.IdtyRevoked(idty_index, reason)- 4idty_index: T::IdtyIndex reason: RevocationReason -
An identity has been removed.IdtyRemoved(idty_index, reason)- 5idty_index: T::IdtyIndex reason: RemovalReason
-
- Membership - 42
-
A membership was added.MembershipAdded(member, expire_on)- 0member: T::IdtyId expire_on: BlockNumberFor<T> -
A membership was renewed.MembershipRenewed(member, expire_on)- 1member: T::IdtyId expire_on: BlockNumberFor<T> -
A membership was removed.MembershipRemoved(member, reason)- 2member: T::IdtyId reason: MembershipRemovalReason
-
- Certification - 43
-
A new certification was added.CertAdded(issuer, receiver)- 0issuer: T::IdtyIndex receiver: T::IdtyIndex -
A certification was removed.CertRemoved(issuer, receiver, expiration)- 1issuer: T::IdtyIndex receiver: T::IdtyIndex expiration: bool -
A certification was renewed.CertRenewed(issuer, receiver)- 2issuer: T::IdtyIndex receiver: T::IdtyIndex
-
- Distance - 44
-
A distance evaluation was requested.EvaluationRequested(idty_index, who)- 0idty_index: T::IdtyIndex who: T::AccountId -
Distance rule was found valid.EvaluatedValid(idty_index, distance)- 1idty_index: T::IdtyIndex distance: Perbill -
Distance rule was found invalid.EvaluatedInvalid(idty_index, distance)- 2idty_index: T::IdtyIndex distance: Perbill
-
- AtomicSwap - 50
-
Swap created.NewSwap(account, proof, swap)- 0account: T::AccountId proof: HashedProof swap: PendingSwap<T> -
Swap claimed. The last parameter indicates whether the execution succeeds.SwapClaimed(account, proof, success)- 1account: T::AccountId proof: HashedProof success: bool -
Swap cancelled.SwapCancelled(account, proof)- 2account: T::AccountId proof: HashedProof
-
- Multisig - 51
-
A new multisig operation has begun.NewMultisig(approving, multisig, call_hash)- 0approving: T::AccountId multisig: T::AccountId call_hash: CallHash -
A multisig operation has been approved by someone.MultisigApproval(approving, timepoint, multisig, call_hash)- 1approving: T::AccountId timepoint: Timepoint<BlockNumberFor<T>> multisig: T::AccountId call_hash: CallHash -
A multisig operation has been executed.MultisigExecuted(approving, timepoint, multisig, call_hash, result)- 2approving: T::AccountId timepoint: Timepoint<BlockNumberFor<T>> multisig: T::AccountId call_hash: CallHash result: DispatchResult -
A multisig operation has been cancelled.MultisigCancelled(cancelling, timepoint, multisig, call_hash)- 3cancelling: T::AccountId timepoint: Timepoint<BlockNumberFor<T>> multisig: T::AccountId call_hash: CallHash -
The deposit for a multisig operation has been updated/poked.DepositPoked(who, call_hash, old_deposit, new_deposit)- 4who: T::AccountId call_hash: CallHash old_deposit: BalanceOf<T> new_deposit: BalanceOf<T>
-
- ProvideRandomness - 52
-
A request for randomness was fulfilled.FilledRandomness(request_id, randomness)- 0request_id: RequestId randomness: H256 -
A request for randomness was made.RequestedRandomness(request_id, salt, r#type)- 1request_id: RequestId salt: H256 r#type: RandomnessType
-
- Proxy - 53
-
A proxy was executed correctly, with the given.ProxyExecuted(result)- 0result: DispatchResult -
A pure account has been created by new proxy with given disambiguation index and proxy type.PureCreated(pure, who, proxy_type, disambiguation_index)- 1pure: T::AccountId who: T::AccountId proxy_type: T::ProxyType disambiguation_index: u16 -
A pure proxy was killed by its spawner.PureKilled(pure, spawner, proxy_type, disambiguation_index)- 2pure: T::AccountId spawner: T::AccountId proxy_type: T::ProxyType disambiguation_index: u16 -
An announcement was placed to make a call in the future.Announced(real, proxy, call_hash)- 3real: T::AccountId proxy: T::AccountId call_hash: CallHashOf<T> -
A proxy was added.ProxyAdded(delegator, delegatee, proxy_type, delay)- 4delegator: T::AccountId delegatee: T::AccountId proxy_type: T::ProxyType delay: BlockNumberFor<T> -
A proxy was removed.ProxyRemoved(delegator, delegatee, proxy_type, delay)- 5delegator: T::AccountId delegatee: T::AccountId proxy_type: T::ProxyType delay: BlockNumberFor<T> -
A deposit stored for proxies or announcements was poked / updated.DepositPoked(who, kind, old_deposit, new_deposit)- 6who: T::AccountId kind: DepositKind old_deposit: BalanceOf<T> new_deposit: BalanceOf<T>
-
- Utility - 54
-
Batch of dispatches did not complete fully. Index of first failing dispatch given, as well as the error.BatchInterrupted(index, error)- 0index: u32 error: DispatchError -
Batch of dispatches completed fully with no error.BatchCompleted()- 1no args -
Batch of dispatches completed but has errors.BatchCompletedWithErrors()- 2no args -
A single item within a Batch of dispatches has completed with no error.ItemCompleted()- 3no args -
A single item within a Batch of dispatches has completed with error.ItemFailed(error)- 4error: DispatchError -
A call was dispatched.DispatchedAs(result)- 5result: DispatchResult -
Main call was dispatched.IfElseMainSuccess()- 6no args -
The fallback call was dispatched.IfElseFallbackCalled(main_error)- 7main_error: DispatchError
-
- Treasury - 55
-
We have ended a spend period and will now allocate funds.Spending(budget_remaining)- 0budget_remaining: BalanceOf<T, I> -
Some funds have been allocated.Awarded(proposal_index, award, account)- 1proposal_index: ProposalIndex award: BalanceOf<T, I> account: T::AccountId -
Some of our funds have been burnt.Burnt(burnt_funds)- 2burnt_funds: BalanceOf<T, I> -
Spending has finished; this is the amount that rolls over until next spend.Rollover(rollover_balance)- 3rollover_balance: BalanceOf<T, I> -
Some funds have been deposited.Deposit(value)- 4value: BalanceOf<T, I> -
A new spend proposal has been approved.SpendApproved(proposal_index, amount, beneficiary)- 5proposal_index: ProposalIndex amount: BalanceOf<T, I> beneficiary: T::AccountId -
The inactive funds of the pallet have been updated.UpdatedInactive(reactivated, deactivated)- 6reactivated: BalanceOf<T, I> deactivated: BalanceOf<T, I> -
A new asset spend proposal has been approved.AssetSpendApproved(index, asset_kind, amount, beneficiary, valid_from, expire_at)- 7index: SpendIndex asset_kind: T::AssetKind amount: AssetBalanceOf<T, I> beneficiary: T::Beneficiary valid_from: BlockNumberFor<T, I> expire_at: BlockNumberFor<T, I> -
An approved spend was voided.AssetSpendVoided(index)- 8index: SpendIndex -
A payment happened.Paid(index, payment_id)- 9index: SpendIndex payment_id: <T::Paymaster as Pay>::Id -
A payment failed and can be retried.PaymentFailed(index, payment_id)- 10index: SpendIndex payment_id: <T::Paymaster as Pay>::Id -
A spend was processed and removed from the storage. It might have been successfully paid or it may have expired.SpendProcessed(index)- 11index: SpendIndex
-