kobe-svm 3.4.0

Solana HD wallet derivation for Kobe
Documentation
//! Solana HD wallet derivation for Kobe.
//!
//! Derives Solana addresses from a [`kobe_primitives::Wallet`] seed using SLIP-10 Ed25519.
//! Supports Phantom/Backpack, Trust Wallet, and Ledger Live derivation styles.

#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(feature = "alloc")]
extern crate alloc;

#[cfg(feature = "alloc")]
mod derivation_style;
#[cfg(feature = "alloc")]
mod deriver;

#[cfg(feature = "alloc")]
pub use derivation_style::DerivationStyle;
#[cfg(feature = "alloc")]
pub use deriver::{Deriver, SvmAccount};
#[cfg(feature = "alloc")]
pub use kobe_primitives::ParseDerivationStyleError;
pub use kobe_primitives::{DeriveError, DerivedAccount, DerivedPublicKey};