We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently I import the keys by running:
KEY_URL=https://raw.githubusercontent.com/bitcoin-core/guix.sigs/main/builder-keys curl -sSL ${KEY_URL}/CoinForensics.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/Emzy.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/Sjors.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/TheCharlatan.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/achow101.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/benthecarman.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/cfields.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/darosior.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/dunxen.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/fanquake.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/glozow.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/guggero.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/hebasto.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/jackielove4u.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/josibake.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/laanwj.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/satsie.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/sipa.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/svanstaa.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/theStack.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/vertiond.gpg | gpg --import - \ && curl -sSL ${KEY_URL}/willyko.gpg | gpg --import -
But as soon as new signers will be added or removed in the future, the script will break.
So why is there not a single file that bundles all the current keys so that I dont have to download them all individually?
Or otherwise at least a file that contains all the names of the signers, so that I can parse that instead of hardcoding the names in my code?
The text was updated successfully, but these errors were encountered:
How about:
curl -s "https://api.github.com/repos/bitcoin-core/guix.sigs/contents/builder-keys" | jq -r '.[].download_url'
Sorry, something went wrong.
Thanks, that is a good solution!
No branches or pull requests
Currently I import the keys by running:
But as soon as new signers will be added or removed in the future, the script will break.
So why is there not a single file that bundles all the current keys so that I dont have to download them all individually?
Or otherwise at least a file that contains all the names of the signers, so that I can parse that instead of hardcoding the names in my code?
The text was updated successfully, but these errors were encountered: