concordium-std 10.1.0

A standard library for writing smart contracts for the Concordium blockchain in Rust.
Documentation
1
2
3
4
5
6
7
8
//! Chain constants that impose limits on various aspects of smart contract
//! execution.

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

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