macro_rules! sha256 { ($bytes:expr) => { ... }; }
Hash an array of bytes using SHA-256 (https://en.wikipedia.org/wiki/SHA-2)
use we_cdk::*; #[action] fn _constructor() { let hash: Binary = sha256!("hello"); }