Skip to main content

ic_memory/
constants.rs

1/// Maximum byte length for printable diagnostic metadata fields.
2pub const DIAGNOSTIC_STRING_MAX_BYTES: usize = 256;
3
4/// WebAssembly page size used by `ic-stable-structures` memory implementations.
5pub const WASM_PAGE_SIZE_BYTES: u64 = 65_536;