Skip to main content

aleph_types/
lib.rs

1// The CID type lives in the dependency-light `aleph-cid` crate (so FFI
2// bindings can use it without the message/signature stack); re-exported here
3// at its historical path.
4pub use aleph_cid::cid;
5
6pub mod account;
7pub mod chain;
8pub mod channel;
9pub mod item_hash;
10pub mod memory_size;
11pub mod message;
12pub mod timestamp;
13pub(crate) mod toolkit;
14#[cfg(any(feature = "signature-evm", feature = "signature-sol"))]
15pub mod verify_signature;