You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cardano/testnet/00_common.sh
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -285,12 +285,12 @@ if [[ "${adahandleAPI: -1}" == "/" ]]; then adahandleAPI=${adahandleAPI%?}; fi #
285
285
if [[ "${magicparam}"==""||${addrformat}==""||${byronToShelleyEpochs}=="" ]];then majorError "The 'magicparam', 'addrformat' or 'byronToShelleyEpochs' is not set!\nOr maybe you have set the wrong parameter network=\"${network}\" ?\nList of preconfigured network-names: ${networknames}";exit 1;fi
286
286
287
287
#Don't allow to overwrite the needed Versions, so we set it after the overwrite part
288
-
minCliVersion="8.23.1"#minimum allowed cli version for this script-collection version
288
+
minCliVersion="9.0.0"#minimum allowed cli version for this script-collection version
289
289
maxCliVersion="99.99.9"#maximum allowed cli version, 99.99.9 = no limit so far
290
-
minNodeVersion="8.11.0"#minimum allowed node version for this script-collection version
290
+
minNodeVersion="8.12.2"#minimum allowed node version for this script-collection version
291
291
maxNodeVersion="99.99.9"#maximum allowed node version, 99.99.9 = no limit so far
292
292
minLedgerCardanoAppVersion="7.1.0"#minimum version for the cardano-app on the Ledger HW-Wallet
293
-
minTrezorCardanoAppVersion="2.6.5"#minimum version for the firmware on the Trezor HW-Wallet
293
+
minTrezorCardanoAppVersion="2.7.2"#minimum version for the firmware on the Trezor HW-Wallet
294
294
minHardwareCliVersion="1.15.0"#minimum version for the cardano-hw-cli
295
295
minCardanoSignerVersion="1.16.1"#minimum version for the cardano-signer binary
296
296
minCatalystToolboxVersion="0.5.0"#minimum version for the catalyst-toolbox binary
if! exists curl;thenecho -e "\e[33mYou need the little tool 'curl', its needed to fetch online data !\n\nInstall it on Ubuntu/Debian like:\n\e[97msudo apt update && sudo apt -y install curl\n\n\e[33mThx! :-)\e[0m\n";exit 2;fi
581
-
if! exists jq;thenecho -e "\e[33mYou need the little tool 'jq', its needed to do the json processing !\n\nInstall it on Ubuntu/Debian like:\n\e[97msudo apt update && sudo apt -y install jq\n\n\e[33mThx! :-)\e[0m\n";exit 2;fi
582
-
if! exists bc;thenecho -e "\e[33mYou need the little tool 'bc', its needed to do larger number calculations !\n\nInstall it on Ubuntu/Debian like:\n\e[97msudo apt update && sudo apt -y install bc\n\n\e[33mThx! :-)\e[0m\n";exit 2;fi
583
-
if! exists xxd;thenecho -e "\e[33mYou need the little tool 'xxd', its needed to convert hex strings !\n\nInstall it on Ubuntu/Debian like:\n\e[97msudo apt update && sudo apt -y install xxd\n\n\e[33mThx! :-)\e[0m\n";exit 2;fi
580
+
if!${offlineMode}&&!exists curl;thenecho -e "\n\n\e[33mYou need the little tool 'curl', its needed to fetch online data !\n\nInstall it on Ubuntu/Debian like:\n\e[97msudo apt update && sudo apt -y install curl\n\n\e[33mThx! :-)\e[0m\n";exit 2;fi
581
+
if! exists jq;thenecho -e "\n\n\e[33mYou need the little tool 'jq', its needed to do the json processing !\n\nInstall it on Ubuntu/Debian like:\n\e[97msudo apt update && sudo apt -y install jq\n\n\e[33mThx! :-)\e[0m\n";exit 2;fi
582
+
if! exists bc;thenecho -e "\n\n\e[33mYou need the little tool 'bc', its needed to do larger number calculations !\n\nInstall it on Ubuntu/Debian like:\n\e[97msudo apt update && sudo apt -y install bc\n\n\e[33mThx! :-)\e[0m\n";exit 2;fi
583
+
if! exists xxd;thenecho -e "\n\n\e[33mYou need the little tool 'xxd', its needed to convert hex strings !\n\nInstall it on Ubuntu/Debian like:\n\e[97msudo apt update && sudo apt -y install xxd\n\n\e[33mThx! :-)\e[0m\n";exit 2;fi
echo -e " \t\e[0mVoting-Power of Staking Address is delegated to DRepID(HASH): \e[32m${drepDelegationID}\e[0m (\e[94m${drepDelegationHASH##*-}\e[0m)\n";
echo -e " \t\e[0mVoting-Power of Staking Address is delegated to DRep-Script-ID(HASH): \e[32m${drepDelegationID}\e[0m (\e[94m${drepDelegationHASH##*-}\e[0m)\n";
338
+
;;
339
+
*) #unknown type
340
+
echo -e " \t\e[0mVoting-Power of Staking Address is delegated to DRep-HASH: \e[32m${drepDelegationHASH}\e[0m\n";
protocolParametersJSON=$( jq ". += ${governanceParametersJSON}"<<<${protocolParametersJSON})#embedding the governance parameters into the normal protocolParameters
151
+
#get the previous actions ids for the various action types and the constitution state
protocolParametersJSON=$( jq ". += ${governanceParametersJSON}"<<<${protocolParametersJSON})#embedding the governance parameters into the normal protocolParameters
191
+
#get the previous actions ids for the various action types and the constitution state
echo -e "\e[0mVoting-Power of Staking Address is delegated to DRep-Script-ID(HASH): \e[32m${drepDelegationID}\e[0m (\e[94m${drepDelegationHASH##*-}\e[0m)\n";
134
+
;;
135
+
*) drepDelegationID=""#unknown type
136
+
echo -e "\e[0mVoting-Power of Staking Address is delegated to DRep-HASH: \e[32m${drepDelegationHASH}\e[0m\n";
0 commit comments