- optimize outputs.
- add `decode` command to decode Hex string to readable values..
bash
punica decode
Usage: punica decode [OPTIONS] COMMAND [ARGS]...
Decode Hex string to readable values.
Options:
-h, --help Show this message and exit.
Commands:
address Decode Hex string to Base58 encode string.
bool Decode Hex string to bool.
dict Decode Hex string to JSON string.
hex Convert ASCII string to a HEX string.
int Convert ASCII string to a number.
tx Decode HEX string to transaction information.
utf8 Decode Hex string to UTF-8 string.
- add `info` command to get information from blockchain.
bash
$ punica info
Usage: punica info [OPTIONS] COMMAND [ARGS]...
Display information in the blockchain.
Options:
-h, --help Show this message and exit.
Commands:
balance Display account balance information.
contract Display contract information.
tx Display transaction information.
- support to specify event data type in `event` parameter in contract `config.json`.
json
{
"clean_score": "AazEvfQPcQ2GEFFPLF1ZLwQ7K5jDn81hve",
"signers": [
"ANH5bHrrt111XwNEnuPZj6u95Dd6u7G4D6"
],
"event": [
"utf8",
"address",
"utf8"
]
}
- support to specify return type in `return` parameter in contract `config.json`.
json
{
"get_user_name": "AazEvfQPcQ2GEFFPLF1ZLwQ7K5jDn81hve",
"preExec": true,
"return": "utf8"
}