diff --git a/docs/maintain/maintain-guides-how-to-validate-polkadot.md b/docs/maintain/maintain-guides-how-to-validate-polkadot.md index 301c99deaaf3..dbaf845a2e00 100644 --- a/docs/maintain/maintain-guides-how-to-validate-polkadot.md +++ b/docs/maintain/maintain-guides-how-to-validate-polkadot.md @@ -334,26 +334,26 @@ brew install cmake pkg-config openssl git llvm #### Building the binaries You can build the Polkadot binaries from the -[paritytech/polkadot](https://github.com/paritytech/polkadot) repository on GitHub. +[paritytech/polkadot-sdk](https://github.com/paritytech/polkadot-sdk) repository on GitHub. You should generally use the latest **X.Y.Z** tag. You should either review the output from the "git -tag" command or view the [Polkadot Github tags](https://github.com/paritytech/polkadot/tags) to see -a list of all the available release versions. You should replace `VERSION` below with the latest -build (i.e., the highest number). +tag" command or view the [Polkadot SDK Github tags](https://github.com/paritytech/polkadot-sdk/tags) +to see a list of all the available release versions. You should replace `VERSION` below with the +latest build (i.e., the highest number). :::note If you prefer to use SSH rather than HTTPS, you can replace the first line of the below with ```sh -git clone git@github.com:paritytech/polkadot.git +git clone git@github.com:paritytech/polkadot-sdk.git ``` ::: ```sh -git clone https://github.com/paritytech/polkadot.git -cd polkadot +git clone https://github.com/paritytech/polkadot-sdk.git +cd polkadot-sdk/polkadot ``` Run the following command to find the latest version. @@ -405,7 +405,7 @@ directory. You may then take the generated `subkey` executable and transfer it t machine for extra security. ```sh -cargo install --force --git https://github.com/paritytech/substrate subkey +cargo install --force --git https://github.com/paritytech/polkadot-sdk subkey ``` ### Verify the installation