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-05-23 15:06:01 -07:00
|
|
|
"$here"/clear-config.sh
|
2018-06-18 15:23:56 -07:00
|
|
|
|
2019-04-17 18:03:58 -07:00
|
|
|
# Create genesis ledger
|
2019-06-07 17:54:54 -07:00
|
|
|
$solana_keygen new -o "$SOLANA_CONFIG_DIR"/mint-keypair.json
|
|
|
|
$solana_keygen new -o "$SOLANA_CONFIG_DIR"/bootstrap-leader-keypair.json
|
|
|
|
$solana_keygen new -o "$SOLANA_CONFIG_DIR"/bootstrap-leader-vote-keypair.json
|
|
|
|
$solana_keygen new -o "$SOLANA_CONFIG_DIR"/bootstrap-leader-stake-keypair.json
|
|
|
|
$solana_keygen new -o "$SOLANA_CONFIG_DIR"/bootstrap-leader-storage-keypair.json
|
2019-06-13 22:30:51 -07:00
|
|
|
$solana_keygen new -o "$SOLANA_CONFIG_DIR"/storage-mining-pool-keypair.json
|
2019-04-16 13:03:01 -07:00
|
|
|
|
2019-05-07 20:28:41 -07:00
|
|
|
args=("$@")
|
2019-05-08 19:59:22 -07:00
|
|
|
default_arg --bootstrap-leader-keypair "$SOLANA_CONFIG_DIR"/bootstrap-leader-keypair.json
|
|
|
|
default_arg --bootstrap-vote-keypair "$SOLANA_CONFIG_DIR"/bootstrap-leader-vote-keypair.json
|
|
|
|
default_arg --bootstrap-stake-keypair "$SOLANA_CONFIG_DIR"/bootstrap-leader-stake-keypair.json
|
2019-05-20 19:46:15 -07:00
|
|
|
default_arg --bootstrap-storage-keypair "$SOLANA_CONFIG_DIR"/bootstrap-leader-storage-keypair.json
|
2019-06-13 22:30:51 -07:00
|
|
|
default_arg --storage-mining-pool-keypair "$SOLANA_CONFIG_DIR"/storage-mining-pool-keypair.json
|
2019-05-07 20:28:41 -07:00
|
|
|
default_arg --ledger "$SOLANA_RSYNC_CONFIG_DIR"/ledger
|
2019-05-08 19:59:22 -07:00
|
|
|
default_arg --mint "$SOLANA_CONFIG_DIR"/mint-keypair.json
|
2019-05-07 20:28:41 -07:00
|
|
|
default_arg --lamports 100000000000000
|
2019-06-04 14:51:52 -07:00
|
|
|
default_arg --bootstrap-leader-lamports 424242
|
2019-06-13 22:30:51 -07:00
|
|
|
default_arg --storage-mining-pool-lamports 100000000
|
2019-06-10 22:18:32 -07:00
|
|
|
default_arg --target-lamports-per-signature 42
|
|
|
|
default_arg --target-signatures-per-slot 42
|
2019-06-06 12:49:46 -07:00
|
|
|
default_arg --hashes-per-tick auto
|
2019-04-17 18:03:58 -07:00
|
|
|
$solana_genesis "${args[@]}"
|
2019-05-07 20:28:41 -07:00
|
|
|
|
|
|
|
test -d "$SOLANA_RSYNC_CONFIG_DIR"/ledger
|
2019-04-17 18:03:58 -07:00
|
|
|
cp -a "$SOLANA_RSYNC_CONFIG_DIR"/ledger "$SOLANA_CONFIG_DIR"/bootstrap-leader-ledger
|