From f95a291e9e749cff0d427a5945120cfd58834dae Mon Sep 17 00:00:00 2001 From: Rootul P Date: Tue, 13 Aug 2024 16:10:19 -0400 Subject: [PATCH 1/3] fix: markdown links (#3778) Fixes a few broken links. See [failing CI](https://github.com/celestiaorg/celestia-app/actions/runs/10354113554/job/28658603156). ## Testing `make markdown-link-check` passes locally (cherry picked from commit a049c57bf68d2c0031034ecd292e5a96d1ad54dc) # Conflicts: # specs/src/specs/namespace.md --- README.md | 2 +- specs/src/specs/namespace.md | 5 +++++ tools/blocktime/readme.md | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7d94aa553e..9cbd8db7b7 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![Go Report Card](https://goreportcard.com/badge/github.com/celestiaorg/celestia-app)](https://goreportcard.com/report/github.com/celestiaorg/celestia-app) [![GitPOAP Badge](https://public-api.gitpoap.io/v1/repo/celestiaorg/celestia-app/badge)](https://www.gitpoap.io/gh/celestiaorg/celestia-app) -celestia-app is the software used by [validators](https://docs.celestia.org/nodes/validator-node) and [full consensus nodes](https://docs.celestia.org/nodes/full-consensus-node) on the Celestia consensus network. celestia-app is a blockchain application built using parts of the Cosmos stack: +celestia-app is the software used by [validators](https://docs.celestia.org/nodes/validator-node) and [consensus nodes](https://docs.celestia.org/nodes/consensus-node) on the Celestia consensus network. celestia-app is a blockchain application built using parts of the Cosmos stack: - [celestiaorg/cosmos-sdk](https://github.com/celestiaorg/cosmos-sdk) a fork of [cosmos/cosmos-sdk](https://github.com/cosmos/cosmos-sdk) - [celestiaorg/celestia-core](https://github.com/celestiaorg/celestia-core) a fork of [cometbft/cometbft](https://github.com/cometbft/cometbft) diff --git a/specs/src/specs/namespace.md b/specs/src/specs/namespace.md index 276af50fe3..7d13aeeeb9 100644 --- a/specs/src/specs/namespace.md +++ b/specs/src/specs/namespace.md @@ -94,7 +94,12 @@ Among the potential consequences is the _Woods Attack_, as elaborated in this fo ## Implementation +<<<<<<< HEAD See [go-square/namespace](https://github.com/celestiaorg/go-square/blob/main/shares/namespace.go). +======= +See the [namespace implementation in go-square](https://github.com/celestiaorg/go-square/blob/4209e67d30fef7de29af2f2712104871c173543a/share/namespace.go). +For the most recent version, which may not reflect the current specifications, refer to [the latest namespace code](https://github.com/celestiaorg/go-square/blob/main/share/namespace.go). +>>>>>>> a049c57b (fix: markdown links (#3778)) ## Go Definition diff --git a/tools/blocktime/readme.md b/tools/blocktime/readme.md index b105142ef8..666cb37b0b 100644 --- a/tools/blocktime/readme.md +++ b/tools/blocktime/readme.md @@ -2,7 +2,7 @@ `blocktime` is a simple tool to analyze block production rates of a chain. It scrapes the latest headers through the RPC endpoint of a provided node and calculates the average, min, max and standard deviation of the intervals between the last `n` blocks (default: 100). -To read up on starting a node and exposing the RPC endpoint go to the docs [here](https://docs.celestia.org/nodes/full-consensus-node) +To start a consensus node and expose the RPC endpoint, see the [docs](https://docs.celestia.org/nodes/consensus-node). ## Usage From 44fd3df3c299c1ee7801ab6aac7847e7bdd98ef0 Mon Sep 17 00:00:00 2001 From: Rootul Patel Date: Tue, 20 Aug 2024 14:11:04 -0400 Subject: [PATCH 2/3] fix: link --- specs/src/specs/namespace.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/specs/src/specs/namespace.md b/specs/src/specs/namespace.md index 7d13aeeeb9..2042595452 100644 --- a/specs/src/specs/namespace.md +++ b/specs/src/specs/namespace.md @@ -94,12 +94,8 @@ Among the potential consequences is the _Woods Attack_, as elaborated in this fo ## Implementation -<<<<<<< HEAD -See [go-square/namespace](https://github.com/celestiaorg/go-square/blob/main/shares/namespace.go). -======= See the [namespace implementation in go-square](https://github.com/celestiaorg/go-square/blob/4209e67d30fef7de29af2f2712104871c173543a/share/namespace.go). For the most recent version, which may not reflect the current specifications, refer to [the latest namespace code](https://github.com/celestiaorg/go-square/blob/main/share/namespace.go). ->>>>>>> a049c57b (fix: markdown links (#3778)) ## Go Definition From d72d23327679ca7cc1ab38191cb8fd3fd55f3013 Mon Sep 17 00:00:00 2001 From: Rootul Patel Date: Tue, 20 Aug 2024 14:12:39 -0400 Subject: [PATCH 3/3] fix: link --- specs/src/specs/shares.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/src/specs/shares.md b/specs/src/specs/shares.md index 30447d6a98..fa700492d0 100644 --- a/specs/src/specs/shares.md +++ b/specs/src/specs/shares.md @@ -112,7 +112,7 @@ Share splitting is the process of converting a blob into a share sequence. The p ## Implementation -See [go-square/shares](https://github.com/celestiaorg/go-square/tree/main/shares). +See [go-square/shares](https://github.com/celestiaorg/go-square/tree/c8242f96a844956f8d1c60e5511104deed8bc361/shares). ## References