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
# Mainnet Release for Conway-Era and Cardano-Node 9.0.0
NOTICE-1: For Ledger HW-Wallet users, at the time of the commit, the Cardano-App 7.1.x for Ledger release was still pending. However, you can load it anyway via Ledger-Live by going into the Settings -> Experimental Features -> My Ledger Provider = 3
NOTICE-2: This commit is only a subset of updated scripts for conway era. The governance scripts (starting with 2*.sh) will be published into the mainnet folder once the light-mode is also working with koios support.
Some of the changes:
- Min. Node- and CLI-Version is now 9.0.0
- The requirement for 'curl' is removed in offline-mode
- The currentEpoch offline calculation was corrected to support unusual byron-era epoch/slot lengths
- The currentSlot/Tip offline calculation was corrected to support unusual byron-era epoch/slot lengths
- Parameter Support added for .coinsPerUTxOByte
- Added offline support for governance
- 01_clainRewards.sh updated fee calculation
- 01_protectKey.sh can encrypt/decrypt DRep and CC-Hot/CC-Cold keys
- 01_queryAddress.sh now shows a DRep delegation for stake accounts
- 01_sendAssets.sh updated fee calculation
- 01_sendLovelaves.sh updated fee calculation
- 01_workOffline.sh now supports DRep entries and takes care of last action IDs and the constitution values
- 03b_regStakingAddrCert.sh now also signs the tx with the staking.skey, thats a new requirement for conway-era
- 03c_checkStakingAddrOnChain.sh now also shows a DRep delegation
- 04e_checkNodeOpCert.sh added errorcheck for onDiekKESStart
- 05c_regStakepoolCert.sh enhanced error message if there is no xxx.pool.json file present
- 05c_regStakepoolCert.sh updated fee calculation
- 06_regDelegationCert.sh updated fee calculation
- 07b_deregStakepoolCert.sh updated fee calculation
- 08b_deregStakingAddrCert.sh udpated fee calculation
- 09a_catalystVoteF10.sh was removed, the normal 09a_catalystVote.sh can be used
- 11a_mintAsset.sh updated fee calculation
- 11b_burnAsset.sh updated fee calculation
- 12b_checkAssetMetaServer.sh better error handling if there was no data found on the metadata server
- 13a_spoPoll.sh and 13b_sendSpoPoll.sh was removed, will be done via governance info-actions in the future
- cardano-signer version bumped to v1.16.1
- README.md updated with the new minimum versions
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";
echo -e "\e[0mLovelaces to send to ${showToAddr}: \e[33m ${lovelacesToSend} lovelaces \e[90m"
486
498
if [[ ${lovelacesToSend}-lt${minOutUTXO} ]];thenecho -e "\e[35mNot enough funds on the source Addr! Minimum UTXO value is ${minOutUTXO} lovelaces.\e[0m";exit 1;fi
487
499
if [[ ${totalAssetsCnt}-gt 0 ]];then#assets are also send completly over, so display them
@@ -501,6 +513,7 @@ case "${lovelacesToSend}" in
501
513
if [[ ${totalAssetsCnt}-gt 0 ]];then
502
514
#assets on the address, they must be sent back to the source address with the minOutUTXO amount of lovelaces, rxcnt=2
echo -e "\e[0mLovelaces to send to ${showToAddr}: \e[33m $(convertToADA ${lovelacesToSend}) ADA / ${lovelacesToSend} lovelaces \e[90m"
514
528
if [[ ${lovelacesToSend}-lt${minOutUTXO} ]];thenecho -e "\e[35mNot enough funds on the source Addr! Minimum UTXO value is ${minOutUTXO} lovelaces.\e[0m";exit 1;fi
515
529
fi;;
516
530
517
531
"MIN" ) #If keyword MIN was used, send just the minimal possible amount of lovelces to the destination address, rest will be returned to the source address, rxcnt=2
echo -e "\e[0mLovelaces to send to ${showToAddr}: \e[33m $(convertToADA ${lovelacesToSend}) ADA / ${lovelacesToSend} lovelaces \e[90m"
533
549
if [[ ${lovelacesToSend}-lt${minOutUTXO} ]];thenecho -e "\e[35mNot enough lovelaces to send to the destination! Minimum UTXO value is ${minOutUTXO} lovelaces.\e[0m";exit 1;fi
0 commit comments