use miden_protocol::note::NoteAttachmentScheme;
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[non_exhaustive]
pub enum StandardNoteAttachment {
NetworkAccountTarget,
}
impl StandardNoteAttachment {
pub const fn attachment_scheme(&self) -> NoteAttachmentScheme {
match self {
StandardNoteAttachment::NetworkAccountTarget => NoteAttachmentScheme::new(1u32),
}
}
}