add todos

This commit is contained in:
Corwin Smith 2022-10-07 14:13:09 -06:00
parent e0ff52219b
commit 8830faa9ca

@ -232,6 +232,8 @@ const DownloadsPage: NextPage = ({}) => {
<Text fontFamily='"Inter", sans-serif' lineHeight='26px'> <Text fontFamily='"Inter", sans-serif' lineHeight='26px'>
You can import the build server public keys by grabbing the individual keys directly from the keyserver network: You can import the build server public keys by grabbing the individual keys directly from the keyserver network:
</Text> </Text>
{/* TODO: These keys depends on the binary */}
<Code p={4}> <Code p={4}>
gpg --recv-keys F9585DE6 C2FF8BBF 9BA28146 7B9E2481 D2A67EAC gpg --recv-keys F9585DE6 C2FF8BBF 9BA28146 7B9E2481 D2A67EAC
</Code> </Code>
@ -242,6 +244,7 @@ const DownloadsPage: NextPage = ({}) => {
Similarly you can import all the developer public keys by grabbing them directly from the keyserver network: Similarly you can import all the developer public keys by grabbing them directly from the keyserver network:
</Text> </Text>
{/* TODO: Thees are developer keys, do we need to change? */}
<Code p={4}> <Code p={4}>
gpg --recv-keys E058A81C 05A5DDF0 1CCB7DD2 gpg --recv-keys E058A81C 05A5DDF0 1CCB7DD2
</Code> </Code>
@ -252,6 +255,7 @@ const DownloadsPage: NextPage = ({}) => {
From the download listings above you should see a link both to the downloadable archives as well as detached signature files. To verify the authenticity of any downloaded data, grab both files and then run: From the download listings above you should see a link both to the downloadable archives as well as detached signature files. To verify the authenticity of any downloaded data, grab both files and then run:
</Text> </Text>
{/* TODO: These keys depends on the binary */}
<Code p={4}> <Code p={4}>
gpg --verify geth-linux-amd64-1.5.0-d0c820ac.tar.gz.asc gpg --verify geth-linux-amd64-1.5.0-d0c820ac.tar.gz.asc
</Code> </Code>