light_compressed_token/
constants.rs

1// 2 in little endian
2pub const TOKEN_COMPRESSED_ACCOUNT_DISCRIMINATOR: [u8; 8] = [2, 0, 0, 0, 0, 0, 0, 0];
3pub const BUMP_CPI_AUTHORITY: u8 = 254;
4pub const NOT_FROZEN: bool = false;
5pub const POOL_SEED: &[u8] = b"pool";
6
7/// Maximum number of pool accounts that can be created for each mint.
8pub const NUM_MAX_POOL_ACCOUNTS: u8 = 5;