concordium-std 2.0.0

A standard library for writing smart contracts for the Concordium blockchain in Rust.
Documentation
1
2
3
4
5
6
7
8
/// Maximum size of the contract state in bytes.
pub const MAX_CONTRACT_STATE_SIZE: u32 = 16384;

/// Maximum log size.
pub const MAX_LOG_SIZE: usize = 512;

/// Maximum number of log items.
pub const MAX_NUM_LOGS: usize = 64;