28 lines
802 B
Bash
28 lines
802 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
RPC_ADDR="${RPC_ADDR:-localhost}"
|
||
|
RPC_PORT="${RPC_PORT:-8545}"
|
||
|
# might be provided by parent
|
||
|
if [[ -z "${PUBLIC_IP}" ]]; then
|
||
|
PUBLIC_IP=$(curl -s https://ipecho.net/plain)
|
||
|
fi
|
||
|
|
||
|
# query local
|
||
|
RESP_JSON=$(
|
||
|
curl -s -XPOST http://${RPC_ADDR}:${RPC_PORT}/ \
|
||
|
-H 'Content-type: application/json' \
|
||
|
-d '{"jsonrpc":"2.0","method":"admin_nodeInfo","params":[],"id":1}'
|
||
|
)
|
||
|
if [[ "$?" -ne 0 ]]; then
|
||
|
echo "RPC port not up, unable to query enode address!" 1>&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# extract enode from JSON response
|
||
|
ENODE_RAW=$(echo "${RESP_JSON}" | jq -r '.result.enode')
|
||
|
# drop arguments at the end of enode address
|
||
|
ENODE_CLEAN=$(echo "${ENODE_RAW}" | grep -oP '\Kenode://[^?]+')
|
||
|
|
||
|
# replace localhost with public IP
|
||
|
echo "${ENODE_CLEAN}" | sed s/127.0.0.1/${PUBLIC_IP}/
|