frostfs-dev-env/bin/resolve.sh
Alex Vanin 28d57c0b13 bin: Adopt resolve script for new NNS contract
Supports both old NNS (neofs-contract v0.11.0)
version and new one NNS.

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
2021-10-12 15:38:57 +03:00

13 lines
529 B
Bash
Executable file

#!/usr/bin/env bash
# Source env settings
. .env
# NeoGo binary path.
NEOGO="${NEOGO:-docker exec -it morph_chain neo-go}"
# NNS contract script hash
NNS_ADDR=`curl -s --data '{ "id": 1, "jsonrpc": "2.0", "method": "getcontractstate", "params": [1] }' http://morph_chain.${LOCAL_DOMAIN}:30333/ | jq -r '.result.hash'`
${NEOGO} contract testinvokefunction \
-r http://morph_chain.${LOCAL_DOMAIN}:30333 \
${NNS_ADDR} resolve string:${1} int:16 | jq -r '.stack[0].value | if type=="array" then .[0].value else . end' | base64 -d