light_event/lib.rs
1//! # light-event
2//!
3//! Event types and parsing for Light Protocol transactions.
4//!
5//! | Type | Description |
6//! |------|-------------|
7//! | [`PublicTransactionEvent`](event::PublicTransactionEvent) | Transaction event with input/output compressed account hashes |
8//! | [`BatchPublicTransactionEvent`](event::BatchPublicTransactionEvent) | Batched event with accounts, addresses, and sequence numbers |
9//! | [`event_from_light_transaction`](parse::event_from_light_transaction) | Parse transaction instructions into a batch event |
10
11pub mod error;
12pub mod event;
13pub mod parse;