2018-11-11 08:02:50 -08:00
|
|
|
#!/usr/bin/env bash
|
2018-06-24 10:10:55 -07:00
|
|
|
|
2018-06-23 11:52:12 -07:00
|
|
|
here=$(dirname "$0")
|
2018-06-24 10:10:55 -07:00
|
|
|
# shellcheck source=multinode-demo/common.sh
|
|
|
|
source "$here"/common.sh
|
2018-06-23 11:52:12 -07:00
|
|
|
|
2018-06-24 10:10:55 -07:00
|
|
|
set -e
|
2019-09-19 08:31:22 -07:00
|
|
|
|
2020-01-22 08:22:09 -08:00
|
|
|
rm -rf "$SOLANA_CONFIG_DIR"/bootstrap-validator
|
|
|
|
mkdir -p "$SOLANA_CONFIG_DIR"/bootstrap-validator
|
2018-06-18 15:23:56 -07:00
|
|
|
|
2019-04-17 18:03:58 -07:00
|
|
|
# Create genesis ledger
|
2019-11-15 13:50:26 -08:00
|
|
|
if [[ -r $FAUCET_KEYPAIR ]]; then
|
2020-03-13 11:41:18 -07:00
|
|
|
cp -f "$FAUCET_KEYPAIR" "$SOLANA_CONFIG_DIR"/faucet.json
|
2019-11-06 20:14:05 -08:00
|
|
|
else
|
2020-03-13 11:41:18 -07:00
|
|
|
$solana_keygen new --no-passphrase -fso "$SOLANA_CONFIG_DIR"/faucet.json
|
2019-11-06 20:14:05 -08:00
|
|
|
fi
|
|
|
|
|
2020-01-22 08:22:09 -08:00
|
|
|
if [[ -f $BOOTSTRAP_VALIDATOR_IDENTITY_KEYPAIR ]]; then
|
2020-03-13 11:41:18 -07:00
|
|
|
cp -f "$BOOTSTRAP_VALIDATOR_IDENTITY_KEYPAIR" "$SOLANA_CONFIG_DIR"/bootstrap-validator/identity.json
|
2019-11-06 20:14:05 -08:00
|
|
|
else
|
2020-03-13 11:41:18 -07:00
|
|
|
$solana_keygen new --no-passphrase -so "$SOLANA_CONFIG_DIR"/bootstrap-validator/identity.json
|
2019-11-06 20:14:05 -08:00
|
|
|
fi
|
2019-07-30 22:43:47 -07:00
|
|
|
|
2020-03-13 11:41:18 -07:00
|
|
|
$solana_keygen new --no-passphrase -so "$SOLANA_CONFIG_DIR"/bootstrap-validator/vote-account.json
|
|
|
|
$solana_keygen new --no-passphrase -so "$SOLANA_CONFIG_DIR"/bootstrap-validator/stake-account.json
|
2019-04-16 13:03:01 -07:00
|
|
|
|
2020-03-04 23:42:01 -08:00
|
|
|
args=(
|
|
|
|
"$@"
|
2020-04-29 18:53:34 -07:00
|
|
|
--max-genesis-archive-unpacked-size 1073741824
|
2020-03-04 23:42:01 -08:00
|
|
|
--enable-warmup-epochs
|
2020-03-13 11:41:18 -07:00
|
|
|
--bootstrap-validator "$SOLANA_CONFIG_DIR"/bootstrap-validator/identity.json
|
|
|
|
"$SOLANA_CONFIG_DIR"/bootstrap-validator/vote-account.json
|
|
|
|
"$SOLANA_CONFIG_DIR"/bootstrap-validator/stake-account.json
|
2020-03-04 23:42:01 -08:00
|
|
|
)
|
2020-07-29 11:05:19 -07:00
|
|
|
|
|
|
|
"$SOLANA_ROOT"/fetch-spl.sh
|
|
|
|
if [[ -r spl-genesis-args.sh ]]; then
|
|
|
|
SPL_GENESIS_ARGS=$(cat "$SOLANA_ROOT"/spl-genesis-args.sh)
|
|
|
|
#shellcheck disable=SC2207
|
|
|
|
#shellcheck disable=SC2206
|
|
|
|
args+=($SPL_GENESIS_ARGS)
|
|
|
|
fi
|
|
|
|
|
2020-01-22 08:22:09 -08:00
|
|
|
default_arg --ledger "$SOLANA_CONFIG_DIR"/bootstrap-validator
|
2020-03-13 11:41:18 -07:00
|
|
|
default_arg --faucet-pubkey "$SOLANA_CONFIG_DIR"/faucet.json
|
2019-11-15 13:50:26 -08:00
|
|
|
default_arg --faucet-lamports 500000000000000000
|
2019-06-06 12:49:46 -07:00
|
|
|
default_arg --hashes-per-tick auto
|
2020-09-08 07:55:09 -07:00
|
|
|
default_arg --cluster-type development
|
2020-07-29 11:05:19 -07:00
|
|
|
|
2019-04-17 18:03:58 -07:00
|
|
|
$solana_genesis "${args[@]}"
|