spl_token_lending/
lib.rs

1#![deny(missing_docs)]
2
3//! A lending program for the Solana blockchain.
4
5pub mod entrypoint;
6pub mod error;
7pub mod instruction;
8pub mod math;
9pub mod processor;
10pub mod pyth;
11pub mod state;
12
13// Export current sdk types for downstream users building with a different sdk version
14pub use solana_program;
15
16solana_program::declare_id!("6TvznH3B2e3p2mbhufNBpgSrLx6UkgvxtVQvopEZ2kuH");