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
- 00_common.sh now includes a likst of CC-ColdHashes and there council names. This is set for Mainnet and PreProd-Testnet
- 24a_genVote.sh and 24c_queryVote.sh are now showing the names of CC members that have voted with there CC-Hot-Keys. The names appear in the YES, NO, ABSTAIN columns right below the counts.
- The CC total voting power calculation has been optimized to actually count authorized and active CC members
- cardano-cli version is currently limited to max. 10.3.99, because most likely 10.4.0.0 will introduce a breaking change in the stake-address-info query output
Copy file name to clipboardexpand all lines: cardano/mainnet/00_common.sh
+25-2
Original file line number
Diff line number
Diff line change
@@ -192,7 +192,16 @@ case "${network,,}" in
192
192
_lightModeParametersURL="https://uptime.live/data/cardano/parms/mainnet-parameters.json"#Parameters-JSON-File with current informations about cardano-cli version, tip, era, protocol-parameters
_adahandleAPI="https://preprod.api.handle.me"#Adahandle-API URLs -> autoresolve into ${adahandleAPI}
208
217
_catalystAPI="https://api.testnet.projectcatalyst.io/api/v1"#Catalyst-API URLs -> autoresolve into ${catalystAPI}
209
218
_lightModeParametersURL="https://uptime.live/data/cardano/parms/preprod-parameters.json"#Parameters-JSON-File with current informations about cardano-cli version, tip, era, protocol-parameters
_lightModeParametersURL="https://uptime.live/data/cardano/parms/preview-parameters.json"#Parameters-JSON-File with current informations about cardano-cli version, tip, era, protocol-parameters
_catalystAPI= #Catalyst-API URLs -> autoresolve into ${catalystAPI}
241
260
_lightModeParametersURL= #Parameters-JSON-File with current informations about cardano-cli version, tip, era, protocol-parameters
261
+
_ccMemberColdHashNames='{}'
242
262
;;
243
263
244
264
@@ -256,6 +276,7 @@ case "${network,,}" in
256
276
_lightModeParametersURL="https://uptime.live/data/cardano/parms/sanchonet-parameters.json"#Parameters-JSON-File with current informations about cardano-cli version, tip, era, protocol-parameters
#Get the committee power distribution -> Generate an Array of CommitteeHotHashes and there Votingpower (MembersAuthorized count as 1, all others like MemberNotAuthorized or MemberResigned count as 0)
#show CC names that have voted -> replace the hotHash with the name from the ccMemberHotHashNames-JSON, convert linebreaks into spaces (make it a line), wordwrap the line, trimstrim each line, make it an array
0 commit comments