1/// Version of lending market2pub version: u8,3/// Bump seed for derived authority address4pub bump_seed: u8,5/// Owner authority which can add new reserves6pub owner: Pubkey,7/// Currency market prices are quoted in8/// e.g. "USD" null padded (`*b"USD\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"`) or a SPL token mint pubkey9pub quote_currency: [u8; 32],10/// Token program id11pub token_program_id: Pubkey,12/// Oracle (Pyth) program id13pub oracle_program_id: Pubkey,Copied!