Skip to main content

EventType

Enum EventType 

Source
pub enum EventType {
Show 117 variants NewBlock, NewTransaction, BlockDisconnected, ChainReorg, PaymentRequestCreated, PaymentSettled, PaymentFailed, PaymentVerified, PaymentRouteFound, PaymentRouteFailed, ChannelOpened, ChannelClosed, BlockMined, BlockTemplateUpdated, MiningDifficultyChanged, MiningJobCreated, MeshPacketReceived, StratumV2MessageReceived, ShareSubmitted, MergeMiningReward, MiningPoolConnected, MiningPoolDisconnected, GovernanceProposalCreated, GovernanceProposalVoted, GovernanceProposalMerged, WebhookSent, WebhookFailed, GovernanceForkDetected, PeerConnected, PeerDisconnected, PeerBanned, PeerUnbanned, MessageReceived, MessageSent, BroadcastStarted, BroadcastCompleted, RouteDiscovered, RouteFailed, ConnectionAttempt, AddressDiscovered, AddressExpired, NetworkPartition, NetworkReconnected, DoSAttackDetected, RateLimitExceeded, BlockValidationStarted, BlockValidationCompleted, ScriptVerificationStarted, ScriptVerificationCompleted, UTXOValidationStarted, UTXOValidationCompleted, DifficultyAdjusted, SoftForkActivated, SoftForkLockedIn, ConsensusRuleViolation, HeadersSyncStarted, HeadersSyncProgress, HeadersSyncCompleted, BlockSyncStarted, BlockSyncProgress, BlockSyncCompleted, SyncStateChanged, MempoolTransactionAdded, MempoolTransactionRemoved, MempoolThresholdExceeded, FeeRateChanged, MempoolCleared, StorageRead, StorageWrite, StorageQuery, DatabaseBackupStarted, DatabaseBackupCompleted, ModuleLoaded, ModuleUnloaded, ModuleReloaded, ModuleStarted, ModuleStopped, ModuleCrashed, ModuleHealthChanged, ModuleStateChanged, ConfigLoaded, NodeShutdown, NodeShutdownCompleted, NodeStartupCompleted, MaintenanceStarted, MaintenanceCompleted, DataMaintenance, HealthCheck, DiskSpaceLow, ResourceLimitWarning, DandelionStemStarted, DandelionStemAdvanced, DandelionFluffed, DandelionStemPathExpired, CompactBlockReceived, BlockReconstructionStarted, BlockReconstructionCompleted, FibreBlockEncoded, FibreBlockSent, CompanionUdpPeerRegistered, CompanionUdpPeerUnregistered, PackageReceived, PackageRejected, UtxoCommitmentReceived, UtxoCommitmentVerified, BanListShared, BanListReceived, SelectiveSyncPolicyApplied, ActionExecuted, ModulePurchaseCompleted, StratumClientConnected, StratumClientDisconnected, IBDBlockFiltered, ModuleDiscovered, ModuleInstalled, ModuleUpdated, ModuleRemoved,
}
Expand description

Event types that modules can subscribe to

Variants§

§

NewBlock

New block connected to chain

§

NewTransaction

New transaction in mempool

§

BlockDisconnected

Block disconnected (chain reorg)

§

ChainReorg

Chain reorganization occurred

§

PaymentRequestCreated

Payment request created

§

PaymentSettled

Payment settled (confirmed on-chain)

§

PaymentFailed

Payment failed

§

PaymentVerified

Lightning payment verified

§

PaymentRouteFound

Payment route discovered

§

PaymentRouteFailed

Payment routing failed

§

ChannelOpened

Lightning channel opened

§

ChannelClosed

Lightning channel closed

§

BlockMined

Block mined successfully

§

BlockTemplateUpdated

Block template updated

§

MiningDifficultyChanged

Mining difficulty changed

§

MiningJobCreated

Mining job created

§

MeshPacketReceived

Mesh packet received from network

§

StratumV2MessageReceived

Stratum V2 message received from network

§

ShareSubmitted

Mining share submitted

§

MergeMiningReward

Merge mining reward received

§

MiningPoolConnected

Mining pool connected

§

MiningPoolDisconnected

Mining pool disconnected

§

GovernanceProposalCreated

Governance proposal created

§

GovernanceProposalVoted

Vote cast on proposal

§

GovernanceProposalMerged

Proposal merged

§

WebhookSent

Webhook sent

§

WebhookFailed

Webhook delivery failed

§

GovernanceForkDetected

Governance fork detected

§

PeerConnected

Peer connected

§

PeerDisconnected

Peer disconnected

§

PeerBanned

Peer banned

§

PeerUnbanned

Peer unbanned

§

MessageReceived

Network message received

§

MessageSent

Network message sent

§

BroadcastStarted

Broadcast operation started

§

BroadcastCompleted

Broadcast operation completed

§

RouteDiscovered

Route discovered

§

RouteFailed

Route failed

§

ConnectionAttempt

Connection attempt (success/failure)

§

AddressDiscovered

New peer address discovered

§

AddressExpired

Peer address expired

§

NetworkPartition

Network partition detected

§

NetworkReconnected

Network partition reconnected

§

DoSAttackDetected

DoS attack detected

§

RateLimitExceeded

Rate limit exceeded

§

BlockValidationStarted

Block validation started

§

BlockValidationCompleted

Block validation completed (success/failure)

§

ScriptVerificationStarted

Script verification started

§

ScriptVerificationCompleted

Script verification completed

§

UTXOValidationStarted

UTXO validation started

§

UTXOValidationCompleted

UTXO validation completed

§

DifficultyAdjusted

Network difficulty adjusted

§

SoftForkActivated

Soft fork activated (SegWit, Taproot, CTV, etc.)

§

SoftForkLockedIn

Soft fork locked in (BIP9)

§

ConsensusRuleViolation

Consensus rule violation detected

§

HeadersSyncStarted

Headers sync started

§

HeadersSyncProgress

Headers sync progress update

§

HeadersSyncCompleted

Headers sync completed

§

BlockSyncStarted

Block sync started (IBD)

§

BlockSyncProgress

Block sync progress update

§

BlockSyncCompleted

Block sync completed

§

SyncStateChanged

Sync state changed (Initial → Headers → Blocks → Synced)

§

MempoolTransactionAdded

Transaction added to mempool

§

MempoolTransactionRemoved

Transaction removed from mempool

§

MempoolThresholdExceeded

Mempool size threshold exceeded

§

FeeRateChanged

Fee rate changed (derived from mempool)

§

MempoolCleared

Mempool cleared

§

StorageRead

Storage read operation

§

StorageWrite

Storage write operation

§

StorageQuery

Storage query operation

§

DatabaseBackupStarted

Database backup started

§

DatabaseBackupCompleted

Database backup completed

§

ModuleLoaded

Module loaded successfully

§

ModuleUnloaded

Module unloaded

§

ModuleReloaded

Module reloaded

§

ModuleStarted

Module started

§

ModuleStopped

Module stopped

§

ModuleCrashed

Module crashed

§

ModuleHealthChanged

Module health status changed

§

ModuleStateChanged

Module state changed

§

ConfigLoaded

Node configuration loaded/changed Modules can subscribe to this to react to config changes

§

NodeShutdown

Node is shutting down (modules should clean up gracefully)

§

NodeShutdownCompleted

Node shutdown completed

§

NodeStartupCompleted

Node startup completed (all components initialized)

§

MaintenanceStarted

Maintenance operation started (modules can prepare)

§

MaintenanceCompleted

Maintenance operation completed

§

DataMaintenance

Data maintenance requested (unified cleanup/flush event) Modules should clean up old data and/or flush pending writes Urgency level indicates how urgent the operation is

§

HealthCheck

Health check performed (modules can report their health)

§

DiskSpaceLow

Disk space is low (modules should clean up data)

§

ResourceLimitWarning

Resource limit warning (modules should reduce usage)

§

DandelionStemStarted

Transaction entered stem phase

§

DandelionStemAdvanced

Transaction advanced in stem phase

§

DandelionFluffed

Transaction transitioned to fluff phase

§

DandelionStemPathExpired

Stem path expired

§

CompactBlockReceived

Compact block received

§

BlockReconstructionStarted

Block reconstruction started

§

BlockReconstructionCompleted

Block reconstruction completed

§

FibreBlockEncoded

Block encoded for FIBRE

§

FibreBlockSent

Block sent via FIBRE

§

CompanionUdpPeerRegistered

P2P peer gained a companion UDP endpoint (NODE_FIBRE after handshake; modules e.g. blvm-fibre)

§

CompanionUdpPeerUnregistered

Companion UDP peer removed (disconnect; peer had NODE_FIBRE)

§

PackageReceived

Transaction package received

§

PackageRejected

Transaction package rejected

§

UtxoCommitmentReceived

UTXO commitment received

§

UtxoCommitmentVerified

UTXO commitment verified

§

BanListShared

Ban list shared with peer

§

BanListReceived

Ban list received from peer

§

SelectiveSyncPolicyApplied

Selective sync policy applied (subscribe, refresh, etc.)

§

ActionExecuted

Mining action executed (miningos trigger_action)

§

ModulePurchaseCompleted

Module purchase completed (marketplace)

§

StratumClientConnected

Stratum V2 miner connected

§

StratumClientDisconnected

Stratum V2 miner disconnected

§

IBDBlockFiltered

Block filtered during IBD (selective sync, prune, etc.)

§

ModuleDiscovered

Module discovered

§

ModuleInstalled

Module installed

§

ModuleUpdated

Module updated

§

ModuleRemoved

Module removed

Trait Implementations§

Source§

impl Clone for EventType

Source§

fn clone(&self) -> EventType

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for EventType

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for EventType

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<EventType, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Hash for EventType

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for EventType

Source§

fn eq(&self, other: &EventType) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for EventType

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Copy for EventType

Source§

impl Eq for EventType

Source§

impl StructuralPartialEq for EventType

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,