base58

Macro base58 

Source
macro_rules! base58 {
    ($value:expr) => { ... };
}
Expand description

Base58 string to bytes conversion

§Result

The result of execution is &[u8] bytes

§Usage

use we_cdk::*;

#[action]
fn _constructor() {
    let address: Binary = base58!("3NzkzibVRkKUzaRzjUxndpTPvoBzQ3iLng3");
}