defituna-staking 1.0.7

Rust client to interact with DefiTuna's Staking on-chain program.
Documentation
#![allow(dead_code)]

mod consts;
mod generated;
mod implementation;
mod pda;

pub use generated::accounts;
pub use generated::errors::*;
pub use generated::instructions;
pub use generated::programs::*;
pub use generated::types;

#[cfg(feature = "fetch")]
pub use generated::shared::*;

#[cfg(feature = "fetch")]
pub(crate) use generated::*;

pub use consts::*;
pub use implementation::*;
pub use pda::*;