barkd (Ark wallet daemon, pinned 0.3.0, checksum-verified release binary) packaged as an installable app; thin HTTP bridge in wallet/ark_client.rs mirrors the fedimint_client pattern — the bark SDK stays out of the node binary. wallet.ark-* RPCs cover status/balance/address/send/invoice/ board/offboard/history/configure; Ark movements merge into the unified ecash history (kind="ark") and spendable Ark sats into total_sats. Signet defaults (Second's public Ark server) until Ark matures. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
11 lines
221 B
Rust
11 lines
221 B
Rust
// WIP Cashu/ecash wallet — many helpers defined for future callers.
|
|
#![allow(dead_code)]
|
|
|
|
pub mod ark_client;
|
|
pub mod bdhke;
|
|
pub mod cashu;
|
|
pub mod ecash;
|
|
pub mod fedimint_client;
|
|
pub mod mint_client;
|
|
pub mod profits;
|