Better options for managing large numbers of keys
See original GitHub issueDescription
From @protolambda
Hey, is there some better way to run multiple validators with Teku. Instead of passing a huge list to
--validators-key-files
in the CLI? Lighthouse does something neat where you specify just a secrets dir, and each password file is named by pubkey, so the client can find them.Or maybe use a csv or json of account -> password mappings? If a directory is too complicated to implement on what’s already there?
I’ll try generating the CLI argument, but it would be neat to just have Teku resolve where to find the passphrases for the key files
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:7 (7 by maintainers)
Top Results From Across the Web
10 Key Management Best Practices You Should Know | Fortanix
10 Key Management Best Practices You Should Know · 1. Algorithms and key sizes · 2. Key lifecycle management · 3. Secure storage...
Read more >5 Keys to Better Key Management - Dark Reading
1. Start with really good keys — and an inventory scan. · 2. Analyze your entire risk profile across your whole environment. ·...
Read more >16 Encryption Key Management Best Practices - phoenixNAP
Learn about the encryption key management best practices that help ... Be sensible with key sizes as large keys often cause issues.
Read more >The Ultimate Guide to Key Control in the Workplace
Learn how to create a comprehensive key control policy from planning to execution. Get the information you need to create a safer workplace...
Read more >The 13 Best Key Organizers for 2022 - The Modest Man
Looking for a new key organizer? I tested Orbitkey, KeySmart, Keybar, Bellroy and others to find the best key holder money can buy....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@protolambda For the record any command line option in Teku can also be put in a YAML config file. But it’s still annoying to have to list every key individually.
to flatten the folder structure, we’ll change:
for validator 814a1a6 (pubkey), we will generate
and its password would be in
then part 2 is specifying the key folder and secrets folder to make this all work… they could easily be broken into separate concerns and worked on independent of each other at this point.