xrpl_std/
types.rs

1// TODO: Move these to the `types` crate.
2pub const XRPL_NFTID_SIZE: usize = 32;
3pub const XRPL_CONTRACT_DATA_SIZE: usize = 4096; //TODO size??
4
5pub type NFT = [u8; XRPL_NFTID_SIZE];
6pub type ContractData = [u8; XRPL_CONTRACT_DATA_SIZE];
7
8pub const XRPL_NFT_URI_SIZE: usize = 256;
9pub type NftUri = [u8; XRPL_NFT_URI_SIZE];