2026-04-15 23:34:49 -03:00

6 lines
172 B
Rust

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>;
}