useanchor_lang::prelude::*;/// Root seed for deriving Index account PDAs.
pubconstSEED_INDEX:&[u8]=b"idx";/// Index accounts store an index's metadata.
#[account]pubstructIndex{pubowner: Pubkey,
pubnamespace: String,
pubcount:u128,
pubis_serial:bool,
pubbump:u8,
}