miden-standards 0.16.1

Standards of the Miden protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Types for interoperating with EVM chains: Ethereum addresses, uint256 amounts, and the
//! encoding of Miden account IDs into the Ethereum address format.
//!
//! These are the Rust counterparts of the MASM procedures in
//! `miden::standards::assets::asset_amount` and `miden::standards::interop::eth`.

pub mod address;
pub mod amount;
pub mod embedded_account_id;

pub use address::{AddressConversionError, EthAddress};
pub use amount::{EthAmount, EthAmountError};
pub use embedded_account_id::EthEmbeddedAccountId;