#smart-contracts #iota #cryptocurrency #hname

macro iota-sc-hname-generator

Generates hashes for function, parameter,and variable names necessary to work with IOTA Smart contracts

8 stable releases

1.1.6 Mar 17, 2021
1.1.4 Mar 14, 2021
1.1.1 Mar 13, 2021
1.0.0 Mar 13, 2021

#85 in #iota

28 downloads per month

MIT license

7KB
88 lines

Actions Status

Hash generator for IOTA Smart contracts

IOTA Smart contract require developers to generate hashes for smart contract functions and views, as well as for parameter and variable names.

They are used to be passed as argument to calls to other functions in the same smart contract and other smart contract functions and views.

With this generator uses procedural macros so you can pre-generate your hashes (in compile-time) to ensure no calculations is necessary in runtime.

The usage is very simple. For example, if your smart contract has the function below:

samplecontract.rs

fn my_sc_function(ctx: &ScFuncContext) {
    ctx.log("Hello world!");
}

You can set your constants and generate their hashes with:

contants.rs

pub const MY_SC_FUNCTION : &str = "my_sc_function";

// Here is the HNAME generation. The output type is ScHName.
pub const HNAME_MY_SC_FUNCTION_1 : ScHname  = iota_sc_hname_generator::generate_schname!("my_sc_function");

// Here is the HASH generation. The output type is u32.
pub const HNAME_MY_SC_FUNCTION_2 : ScHname = ScHname(iota_sc_hname_generator::generate_hash!("aa"));

No need to manually generate hashes and hardcode them.

Dependencies

~2MB
~42K SLoC