Crate libdogecoin_rs

Crate libdogecoin_rs 

Source
Expand description

§libdogecoin-rs

Safe Rust bindings for libdogecoin, providing:

  • Wallet creation and key generation
  • Transaction creation and signing
  • HD Wallet support (BIP32/BIP44)
  • Mnemonic phrase generation (BIP39)
  • QR Code generation for addresses

Re-exports§

pub use address::AddressNetwork;
pub use address::AddressUtils;
pub use hdwallet::HdWallet;
pub use message::Message;
pub use mnemonic::Mnemonic;
pub use qrcode::QrCode;
pub use rpc::DogeRpcClient;
pub use transaction::DogeTransaction;
pub use wallet::DogeWallet;
pub use libdogecoin_sys as sys;

Modules§

address
Address utilities (validation and network detection).
context
Dogecoin ECC context management.
hdwallet
Hierarchical Deterministic (HD) Wallet support (BIP32/BIP44).
message
Message signing and verification.
mnemonic
BIP39 Mnemonic phrase support.
qrcode
QR Code generation for Dogecoin addresses.
rpc
Simple JSON-RPC client for Dogecoin Core compatible nodes.
transaction
Transaction creation and signing for Dogecoin.
wallet