6 lines
172 B
Rust
Raw Normal View History

2026-04-15 23:34:49 -03:00
pub trait KeyTreeNode: Sized {
fn from_seed(seed: [u8; 64]) -> Self;
fn derive_child(&self, cci: u32) -> Self;
fn account_ids(&self) -> Vec<nssa::AccountId>;
2025-11-07 16:21:14 +02:00
}