macro_rules! to_base58_string { ($value:expr) => { ... }; }
Bytes to Base58 string conversion
The result of execution is &[u8] bytes
&[u8]
use we_cdk::*; #[action] fn _constructor() { let address: Binary = base58!("3NzkzibVRkKUzaRzjUxndpTPvoBzQ3iLng3"); let address_string: String = to_base58_string!(address); }