light-event 0.24.0

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

pub mod error;
pub mod event;
pub mod parse;
#[cfg(test)]
mod regression_test;