Skip to main content

Crate kobe_primitives

Crate kobe_primitives 

Source
Expand description

Multi-chain HD wallet derivation library.

Core Wallet type holds a BIP-39 mnemonic and derives seeds for chain-specific derivers (kobe-evm, kobe-btc, kobe-svm, etc.).

let wallet = kobe_primitives::Wallet::from_mnemonic(
    "abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about",
    None,
)?;

Modules§

mnemonic
BIP-39 mnemonic utilities.

Structs§

DerivedAccount
A derived HD account — unified across all chains.
Wallet
A unified HD wallet that can derive keys for multiple cryptocurrencies.

Enums§

DeriveError
Errors produced by core wallet and key-derivation operations.
Language
Language to be used for the mnemonic phrase.

Traits§

Derive
Unified derivation trait implemented by all chain derivers.
DeriveExt
Extension trait providing batch derivation for all Derive implementors.

Type Aliases§

Result
Convenient Result alias.