kvault-interface 0.1.0

Instruction builders for Kamino Vault (kvault) — no anchor-lang dependency
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Low-level instruction builders — one function per Kvault instruction.
//!
//! Each function takes an `*Accounts` struct and returns a single
//! [`solana_instruction::Instruction`]. The caller supplies every account
//! address manually.
//!
//! For a higher-level API that auto-derives PDAs and remaining accounts,
//! see [`helpers`](crate::helpers).

pub mod deposit;
pub mod invest;
pub mod redeem;
pub mod withdraw;

pub use deposit::*;
pub use invest::*;
pub use redeem::*;
pub use withdraw::*;