use bls::PublicKey;
use serde::{Deserialize, Serialize};
use xor_name::XorName;
#[derive(Clone, Copy, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub struct GraphEntryAddress(pub XorName);
impl GraphEntryAddress {
pub fn from_owner(owner: PublicKey) -> Self {
Self(XorName::from_content(&owner.to_bytes()))
}
pub fn new(xor_name: XorName) -> Self {
Self(xor_name)
}
pub fn xorname(&self) -> &XorName {
&self.0
}
pub fn to_hex(&self) -> String {
hex::encode(self.0)
}
}
impl std::fmt::Debug for GraphEntryAddress {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "GraphEntryAddress({})", &self.to_hex()[0..6])
}
}