forked from cerc-io/laconicd
		
	Add env variables to configure authority auctions in initialization script (#50)
Part of [laconicd testnet validator enrollment](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675) Reviewed-on: cerc-io/laconicd#50 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
This commit is contained in:
		
							parent
							
								
									b5a76a920e
								
							
						
					
					
						commit
						3c5cd002e1
					
				| @ -6,7 +6,7 @@ MONIKER=${MONIKER:-"localtestnet"} | ||||
| KEYRING=${KEYRING:-"test"} | ||||
| DENOM=${DENOM:-"alnt"} | ||||
| STAKING_AMOUNT=${STAKING_AMOUNT:-"1000000000000000"} | ||||
| LOGLEVEL="${LOGLEVEL:-"info"}" | ||||
| LOGLEVEL=${LOGLEVEL:-"info"} | ||||
| 
 | ||||
| input_genesis_file=${GENESIS_FILE} | ||||
| 
 | ||||
| @ -33,7 +33,7 @@ if [ "$1" == "clean" ] || [ ! -d "$HOME/.laconicd/data/blockstore.db" ]; then | ||||
|   # Set moniker and chain-id for Ethermint (Moniker can be anything, chain-id must be an integer) | ||||
|   laconicd init $MONIKER --chain-id $CHAINID --default-denom $DENOM | ||||
| 
 | ||||
|   if [ -f ${input_genesis_file} ]; then | ||||
|   if [[ -f ${input_genesis_file} ]]; then | ||||
|     # Use provided genesis config | ||||
|     cp $input_genesis_file $HOME/.laconicd/config/genesis.json | ||||
|   fi | ||||
| @ -67,6 +67,26 @@ if [ "$1" == "clean" ] || [ ! -d "$HOME/.laconicd/data/blockstore.db" ]; then | ||||
|     update_genesis '.app_state["onboarding"]["params"]["onboarding_enabled"]=true' | ||||
|   fi | ||||
| 
 | ||||
|   if [[ "$AUTHORITY_AUCTION_ENABLED" == "true" ]]; then | ||||
|     echo "Enabling authority auctions." | ||||
|     update_genesis '.app_state["registry"]["params"]["authority_auction_enabled"]=true' | ||||
|   fi | ||||
| 
 | ||||
|   if [[ -n $AUTHORITY_AUCTION_COMMITS_DURATION ]]; then | ||||
|     echo "Setting authority_auction_commits_duration to $AUTHORITY_AUCTION_COMMITS_DURATION seconds." | ||||
|     update_genesis ".app_state[\"registry\"][\"params\"][\"authority_auction_commits_duration\"]=\"${AUTHORITY_AUCTION_COMMITS_DURATION}s\"" | ||||
|   fi | ||||
| 
 | ||||
|   if [[ -n $AUTHORITY_AUCTION_REVEALS_DURATION ]]; then | ||||
|     echo "Setting authority_auction_reveals_duration to $AUTHORITY_AUCTION_REVEALS_DURATION seconds." | ||||
|     update_genesis ".app_state[\"registry\"][\"params\"][\"authority_auction_reveals_duration\"]=\"${AUTHORITY_AUCTION_REVEALS_DURATION}s\"" | ||||
|   fi | ||||
| 
 | ||||
|   if [[ -n $AUTHORITY_GRACE_PERIOD ]]; then | ||||
|     echo "Setting authority_grace_period to $AUTHORITY_GRACE_PERIOD seconds." | ||||
|     update_genesis ".app_state[\"registry\"][\"params\"][\"authority_grace_period\"]=\"${AUTHORITY_GRACE_PERIOD}s\"" | ||||
|   fi | ||||
| 
 | ||||
|   # increase block time (?) | ||||
|   update_genesis '.consensus["params"]["block"]["time_iota_ms"]="1000"' | ||||
| 
 | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user