iop_morpheus_proto/lib.rs
1pub mod crypto;
2pub mod data;
3pub mod txtype;
4
5use std::ops::Deref;
6
7use anyhow::{anyhow, bail, ensure, Result};
8use serde::{Deserialize, Serialize};
9
10use iop_journal_proto::{serializer, BlockHeight};
11use iop_keyvault::{
12 multicipher::{MPublicKey, MSignature},
13 PublicKey,
14};
15use json_digest::{canonical_json, default_hasher, digest_data, Nonce264};