Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions spartan/scripts/prepare_sepolia_accounts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,13 @@ max_index=$((max_index > bot_max_index ? max_index : bot_max_index))
# Total number of accounts needed
total_accounts=$((num_validators + num_provers + num_bots))



# Create a new mnemonic
echo "Creating mnemonic..."
cast wallet new-mnemonic --json >"$tmp_filename"
MNEMONIC=$(jq -r '.mnemonic' "$tmp_filename")

echo "MNEMONIC: $MNEMONIC"
echo "MNEMONIC:"
echo "::add-mask::$MNEMONIC"

# Cast has a limit of 255 accounts per mnemonic command
# We'll need to derive accounts in batches
Expand Down