kobe-svm 0.7.6

Solana HD wallet derivation for Kobe
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Error types for Solana wallet operations.

/// Errors that can occur during Solana wallet operations.
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum Error {
    /// Core kobe error (index overflow, SLIP-10 derivation, etc.).
    #[error(transparent)]
    Core(#[from] kobe_primitives::Error),

    /// Ed25519 signature error.
    #[error("ed25519 signature error")]
    Signature,
}