Helios-CLI
A CLI tool for compiling Helios smart contracts.
Installation
Dependencies:
$ sudo npm i -g @hyperionbt/helios-cli
Usage
Compiling
$ helios compile my_script.hl --optimize --output my_script.json
The cli searches in current directory for any necessary modules. Additional module search directories can be included using the -I
flag.
Parameters can be set using the -D<param-name> <param-value>
option:
$ helios compile my_script.hl -DMY_PARAM 100 -o my_script.json
Evaluating a parameter
$ helios eval my_script.hl MY_PARAM
Additional module search directories can be included using the -I
flag. Similar to compile
, parameters can be set using the -D<param-name> <param-value>
option.
Calculating a script address
For testnet:
$ helios address my_script.json
For mainnet:
$ helios address my_script.json --mainnet