light-token-interface 0.3.0

Light Protocol token instruction data types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod discriminator;
pub mod instructions;

pub mod error;
pub mod hash_cache;
pub mod pool_derivation;
pub mod token_2022_extensions;

pub use error::*;
pub use pool_derivation::*;
pub use token_2022_extensions::*;
mod constants;
pub mod state;
#[cfg(feature = "anchor")]
use anchor_lang::{AnchorDeserialize, AnchorSerialize};
#[cfg(not(feature = "anchor"))]
use borsh::{BorshDeserialize as AnchorDeserialize, BorshSerialize as AnchorSerialize};
pub use constants::*;