ore-lst-api 0.2.1

ORE liquid staking token.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use steel::*;

/// Errors returned by the ORE LST program.
#[derive(Debug, Error, Clone, Copy, PartialEq, Eq, IntoPrimitive)]
#[repr(u32)]
pub enum StoreError {
    /// Placeholder error variant.
    #[error("Dummy")]
    Dummy = 0,
}

error!(StoreError);