Skip to content

Commit 89e8c5c

Browse files
nuke-web3Dan Shields
authored andcommitted
move wiki -> docs (paritytech#10225)
Co-authored-by: Dan Shields <danwshields@gmail.com>
1 parent 2c69643 commit 89e8c5c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

bin/utils/subkey/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The output above also show the **public key** and the **Account ID**. Those are
6969

7070
The **SS58 address** (or **Public Address**) of a new account is a reprensentation of the public keys of an account for a given network (for instance Kusama or Polkadot).
7171

72-
You can read more about the SS58 format in the [substrate wiki](https://github.com/paritytech/substrate/wiki/External-Address-Format-(SS58)) and see the list of reserved prefixes in the [Polkadot wiki](https://wiki.polkadot.network/docs/build-ss58-registry).
72+
You can read more about the SS58 format in the [Substrate Docs](https://docs.substrate.io/v3/advanced/ss58/) and see the list of reserved prefixes in the [SS58 Registry](https://github.com/paritytech/ss58-registry).
7373

7474
For instance, considering the previous seed `0xa05c75731970cc7868a2fb7cb577353cd5b31f62dccced92c441acd8fee0c92d` the SS58 addresses are:
7575

client/cli/src/commands/run_cmd.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ pub struct RunCmd {
5858
///
5959
/// Default is local. Note: not all RPC methods are safe to be exposed publicly. Use an RPC
6060
/// proxy server to filter out dangerous methods. More details:
61-
/// <https://github.com/paritytech/substrate/wiki/Public-RPC>.
61+
/// <https://docs.substrate.io/v3/runtime/custom-rpcs/#public-rpcs>.
6262
/// Use `--unsafe-rpc-external` to suppress the warning if you understand the risks.
6363
#[structopt(long = "rpc-external")]
6464
pub rpc_external: bool,
@@ -89,7 +89,7 @@ pub struct RunCmd {
8989
///
9090
/// Default is local. Note: not all RPC methods are safe to be exposed publicly. Use an RPC
9191
/// proxy server to filter out dangerous methods. More details:
92-
/// <https://github.com/paritytech/substrate/wiki/Public-RPC>.
92+
/// <https://docs.substrate.io/v3/runtime/custom-rpcs/#public-rpcs>.
9393
/// Use `--unsafe-ws-external` to suppress the warning if you understand the risks.
9494
#[structopt(long = "ws-external")]
9595
pub ws_external: bool,

primitives/core/src/crypto.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ pub enum PublicError {
219219

220220
/// Key that can be encoded to/from SS58.
221221
///
222-
/// See <https://github.com/paritytech/substrate/wiki/External-Address-Format-(SS58)#address-type>
222+
/// See <https://docs.substrate.io/v3/advanced/ss58/>
223223
/// for information on the codec.
224224
#[cfg(feature = "full_crypto")]
225225
pub trait Ss58Codec: Sized + AsMut<[u8]> + AsRef<[u8]> + Default {

0 commit comments

Comments
 (0)