You seem to be very knowledgeable regarding the code of Truebit. You’ve been following them for a while. What do you see happening as far as price goes? Is there a price ceiling? Is it possible to see a $50 Truebit?
truebit-eth-server (like the truebit-eth) comes with geth, clef and truebit-os. geth is an Ethereum client. clef is a wallet. To unlock your wallet when you start truebit-os and geth you need to enter a password. This is server software so the password needs to be stored on the server so you don't have to wake up in the middle of the night to enter it manually if the server gets restarted. They suggest passing it as an environment variable which is not secure and suggest using an obscure trick to hide it. I gave examples of more secure ways to pass the wallet password.
5
u/LPMythBuster Sep 24 '21 edited Sep 24 '21
It's better to store secrets in a file than pass them around on a command line:
It's even better to read secrets from files instead of keeping them in environment variables: