forked from cardano-foundation/CIP-0094-polls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
getPoll.sh
115 lines (101 loc) · 3.62 KB
/
getPoll.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#!/bin/bash
################# custom settings #######################
# set your prefered path to your v8.x.x cardano-cli binary
#CCLI8="${HOME}/.local/bin/cardano-cli"
################# initial checks ########################
# assume the v8 exe built and installed by the build_CCLI8 script
if [ -z ${CCLI8} ]; then
if [ -f "${HOME}/.local/bin/CIP-0094/cardano-cli" ]; then
CCLI8="${HOME}/.local/bin/CIP-0094/cardano-cli"
else
# if not found, let's look for the default cardano-cli exe
CCLI8=$(whereis cardano-cli | cut -d' ' -f2)
if [ -z ${CCLI8} ]; then
echo "Warn: no cardano-cli exe found. exiting"
exit
fi
fi
fi
# we need at least v8.x.x
cli_version=$(${CCLI8} --version 2>/dev/null | head -n 1 | cut -d' ' -f2)
if [[ $(echo $cli_version | cut -d'.' -f1) -lt 8 ]]; then
echo "Warn: cardano-cli version $cli_version does not support governance poll commands"
exit
else
echo "Using ${CCLI8} version ${cli_version} ..."
fi
#################### and Go ###########################
echo " _____ ____ ____ ____
/ ___// __ \/ __ \ ____ ____ / / /
\__ \/ /_/ / / / /_____/ __ \/ __ \/ / /
___/ / ____/ /_/ /_____/ /_/ / /_/ / / /
/____/_/ \____/ / .___/\____/_/_/
/_/
"
PS3='Which network should we look at? '
options=("PreProd" "Mainnet" "Quit")
select opt in "${options[@]}"
do
case $opt in
"PreProd")
echo "OK so be it $opt"
network='preprod'
options=("PreProd Demo Poll (epoch 86 - 1 May 2023)" "Other" "Quit")
break
;;
"Mainnet")
echo "OK so be it $opt"
network='mainnet'
options=("Mainnet SPO-Poll (epoch ... - .. May 2023)" "Other" "Quit")
break
;;
"Quit")
echo "Good bye!"
exit
;;
*) echo "invalid option $REPLY";;
esac
done
echo ""
PS3='Which poll TX should we look at? '
select opt in "${options[@]}"
do
case $opt in
"PreProd Demo Poll (epoch 86 - 1 May 2023)")
txHash='d8c1b1d871a27d74fbddfa16d28ce38288411a75c5d3561bb74066bcd54689e2'
echo "OK so TX ${txHash}"
break
;;
"Mainnet SPO-Poll (epoch ... - .. May 2023)")
txHash='b3-a-b1t-pat13nt-plz...'
echo "OK so TX ${txHash}"
break
;;
"Other")
echo "Please specify the tx hash"
read txHash
echo "OK so TX ${txHash}"
break
;;
"Quit")
echo "Good bye!"
exit
;;
*) echo "invalid option $REPLY";;
esac
done
echo "Query ${network}: ${txHash} metadata ..."
tx=$(curl -sX POST "https://${network}.koios.rest/api/v0/tx_metadata" -H "accept: application/json" -H "content-type: application/json" -d "{\"_tx_hashes\":[\"${txHash}\"]}")
txMeta=$(echo $tx | jq -r .[0].metadata)
if [[ -n $(echo $txMeta | jq -r '.["94"]') ]]; then
echo "Looks promising: TX metadata has a CIP-0094 label"
#query the TX in CBOR format from cardano-foundation/CIP-0094-polls (interim solution for preprod)
txCBOR=$(curl -s GET "https://raw.githubusercontent.com/cardano-foundation/CIP-0094-polls/main/networks/preprod/${txHash}/poll.json")
echo "$txCBOR" > /tmp/CIP-0094_${txHash}-CBOR.json
echo ""
${CCLI8} governance answer-poll --poll-file /tmp/CIP-0094_${txHash}-CBOR.json 1> /tmp/CIP-0094_${txHash}-poll-answer.json
echo ""
echo "Metadata for your answer TX is ready in /tmp/CIP-0094_${txHash}-poll-answer.json"
else
echo "Warn: TX has no CIP-0094 metadata label. Exiting"
fi