xmtp_common/
types.rs

1//! Common Primitive Types that may be shared across all XMTP Crates
2//! Types should not have any dependencies other than std and std-adjacent crates (like bytes)
3
4pub type Address = String;
5pub type InboxId = String;
6pub type WalletAddress = String;