| 
									
										
										
										
											2019-08-01 13:48:00 -07:00
										 |  |  | #!/usr/bin/env bash
 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Delegate stake to a validator | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | set -e | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | here=$(dirname "$0") | 
					
						
							|  |  |  | # shellcheck source=multinode-demo/common.sh | 
					
						
							|  |  |  | source "$here"/common.sh | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | stake_lamports=42           # default number of lamports to assign as stake | 
					
						
							|  |  |  | url=http://127.0.0.1:8899   # default RPC url | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | usage() { | 
					
						
							|  |  |  |   if [[ -n $1 ]]; then | 
					
						
							|  |  |  |     echo "$*" | 
					
						
							|  |  |  |     echo | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   cat <<EOF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | usage: $0 [OPTIONS] <lamports to stake ($stake_lamports)> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Add stake to a validator | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OPTIONS: | 
					
						
							|  |  |  |   --url   RPC_URL           - RPC URL to the cluster ($url) | 
					
						
							|  |  |  |   --label LABEL             - Append the given label to the configuration files, useful when running | 
					
						
							|  |  |  |                               multiple validators in the same workspace | 
					
						
							|  |  |  |   --no-airdrop              - Do not attempt to airdrop the stake | 
					
						
							|  |  |  |   --keypair FILE            - Keypair to fund the stake from | 
					
						
							| 
									
										
										
										
											2019-08-01 21:08:24 -07:00
										 |  |  |   --force                   - Override delegate-stake sanity checks | 
					
						
							| 
									
										
										
										
											2019-08-01 13:48:00 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  |   exit 1 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | common_args=() | 
					
						
							|  |  |  | label= | 
					
						
							|  |  |  | airdrops_enabled=1 | 
					
						
							| 
									
										
										
										
											2019-08-01 21:08:24 -07:00
										 |  |  | maybe_force= | 
					
						
							| 
									
										
										
										
											2019-08-01 13:48:00 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | positional_args=() | 
					
						
							|  |  |  | while [[ -n $1 ]]; do | 
					
						
							|  |  |  |   if [[ ${1:0:1} = - ]]; then | 
					
						
							|  |  |  |     if [[ $1 = --label ]]; then | 
					
						
							|  |  |  |       label="-$2" | 
					
						
							|  |  |  |       shift 2 | 
					
						
							|  |  |  |     elif [[ $1 = --keypair || $1 = -k ]]; then | 
					
						
							|  |  |  |       common_args+=("$1" "$2") | 
					
						
							|  |  |  |       shift 2 | 
					
						
							| 
									
										
										
										
											2019-08-01 21:08:24 -07:00
										 |  |  |     elif [[ $1 = --force ]]; then | 
					
						
							|  |  |  |       maybe_force=--force | 
					
						
							| 
									
										
										
										
											2019-08-01 22:43:09 -07:00
										 |  |  |       shift 1 | 
					
						
							| 
									
										
										
										
											2019-08-01 13:48:00 -07:00
										 |  |  |     elif [[ $1 = --url || $1 = -u ]]; then | 
					
						
							|  |  |  |       url=$2 | 
					
						
							|  |  |  |       shift 2 | 
					
						
							|  |  |  |     elif [[ $1 = --no-airdrop ]]; then | 
					
						
							|  |  |  |       airdrops_enabled=0 | 
					
						
							|  |  |  |       shift | 
					
						
							|  |  |  |     elif [[ $1 = -h ]]; then | 
					
						
							|  |  |  |       usage "$@" | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       echo "Unknown argument: $1" | 
					
						
							|  |  |  |       exit 1 | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     positional_args+=("$1") | 
					
						
							|  |  |  |     shift | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | done | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | common_args+=(--url "$url") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [[ ${#positional_args[@]} -gt 1 ]]; then | 
					
						
							|  |  |  |   usage "$@" | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | if [[ -n ${positional_args[0]} ]]; then | 
					
						
							|  |  |  |   stake_lamports=${positional_args[0]} | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | config_dir="$SOLANA_CONFIG_DIR/validator$label" | 
					
						
							|  |  |  | vote_keypair_path="$config_dir"/vote-keypair.json | 
					
						
							| 
									
										
										
										
											2019-08-10 13:15:59 -07:00
										 |  |  | stake_keypair_path="$config_dir"/stake-keypair.json | 
					
						
							| 
									
										
										
										
											2019-08-01 13:48:00 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | if [[ ! -f $vote_keypair_path ]]; then | 
					
						
							|  |  |  |   echo "Error: $vote_keypair_path not found" | 
					
						
							|  |  |  |   exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [[ -f $stake_keypair_path ]]; then | 
					
						
							|  |  |  |   # TODO: Add ability to add multiple stakes with this script? | 
					
						
							|  |  |  |   echo "Error: $stake_keypair_path already exists" | 
					
						
							|  |  |  |   exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if ((airdrops_enabled)); then | 
					
						
							|  |  |  |   declare fees=100 # TODO: No hardcoded transaction fees, fetch the current cluster fees | 
					
						
							| 
									
										
										
										
											2019-09-10 17:16:40 -06:00
										 |  |  |   $solana_cli "${common_args[@]}" airdrop $((stake_lamports+fees)) lamports | 
					
						
							| 
									
										
										
										
											2019-08-01 13:48:00 -07:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | $solana_keygen new -o "$stake_keypair_path" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | set -x | 
					
						
							| 
									
										
										
										
											2019-08-22 13:51:16 -07:00
										 |  |  | $solana_cli "${common_args[@]}" \
 | 
					
						
							| 
									
										
										
										
											2019-08-10 13:15:59 -07:00
										 |  |  |   show-vote-account "$vote_keypair_path" | 
					
						
							| 
									
										
										
										
											2019-08-22 13:51:16 -07:00
										 |  |  | $solana_cli "${common_args[@]}" \
 | 
					
						
							| 
									
										
										
										
											2019-09-10 17:16:40 -06:00
										 |  |  |   delegate-stake $maybe_force "$stake_keypair_path" "$vote_keypair_path" "$stake_lamports" lamports | 
					
						
							| 
									
										
										
										
											2019-08-22 13:51:16 -07:00
										 |  |  | $solana_cli "${common_args[@]}" show-stake-account "$stake_keypair_path" |