mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-05-23 16:39:32 +00:00
6 lines
172 B
Rust
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>;
|
|
}
|