mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-05-08 17:19:45 +00:00
9 lines
237 B
Rust
9 lines
237 B
Rust
pub trait KeyTreeNode: Sized {
|
|
#[must_use]
|
|
fn from_seed(seed: [u8; 64]) -> Self;
|
|
#[must_use]
|
|
fn derive_child(&self, cci: u32) -> Self;
|
|
#[must_use]
|
|
fn account_ids(&self) -> impl Iterator<Item = nssa::AccountId>;
|
|
}
|