Skip to content

Commit 6ae3a23

Browse files
Fix dead links in docs (#4312)
* fix dead links in docs * Make links not be hardcoded
1 parent 550eb8e commit 6ae3a23

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

frontend/website/pages/docs/developers/code-reviews.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ A good pull request:
1111

1212
## OCaml things
1313

14-
- Are the [style guidelines](../style-guide) being followed?
14+
- Are the [style guidelines](./style-guide) being followed?
1515
- Do the signatures make sense? Are they minimal and reusable?
1616
- Does anything need to be functored over?
1717
- Are there any error cases that aren't handled correctly?

frontend/website/pages/docs/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Currently, a 4-core processor and 8 GB of RAM are the minimum requirements. In
1111

1212
#### What about software?
1313

14-
You can download all the software required to run a Coda node [here](https://codaprotocol.com/docs/getting-started/#installation). Right now, we have builds that work on MacOS, as well as Debian and Ubuntu. You can also [build from source](https://github.com/codaprotocol/coda).
14+
You can download all the software required to run a Coda node [here](./getting-started/#installation). Right now, we have builds that work on MacOS, as well as Debian and Ubuntu. You can also [build from source](https://github.com/codaprotocol/coda).
1515

1616
#### What can I do on the Coda network?
1717

frontend/website/pages/docs/my-first-transaction.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export default Page({title: "My First Transaction"});
33

44
# My First Transaction
55

6-
In this section, we'll make our first transaction on the Coda network. After [installing the software](../getting-started), we'll need to create a new account before we can send or receive coda. Let's first start up the node so that we can start issuing commands.
6+
In this section, we'll make our first transaction on the Coda network. After [installing the software](./getting-started), we'll need to create a new account before we can send or receive coda. Let's first start up the node so that we can start issuing commands.
77

88
## Start up a node
99

@@ -19,6 +19,7 @@ The host and port specified above refer to the seed peer address - this is the i
1919

2020
If you forwarded custom ports (other than 8302 and 8303), you'll need to replace the default ports above with the ones you forwarded.
2121

22+
2223
<Alert>
2324

2425
The daemon process needs to be running whenever you issue commands from `coda client`, so make sure you don't kill it by accident.

frontend/website/pages/docs/node-operator.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ When you [start the daemon](/docs/my-first-transaction/#start-up-a-node), set th
132132

133133
As a snark-worker, you get to share some of the block reward for each block your compressed transactions make it in to. The block producer is responsible for gathering compressed transactions before including them into a block, and will be incentivized by the protocol to reward snark-workers.
134134

135-
That about covers the roles and responsibilities as a Code node operator. Since Coda is a permissionless peer-to-peer network, everything is managed and run in a decentralized manner by nodes all over the world. Similarly, the Coda project is also distributed and permissionless to join. The code is all open source, and there is much work to be done, both technical and non-technical. To learn more about how you can get involved with Coda, please check out the [Contributing to Coda section](../contributing).
135+
That about covers the roles and responsibilities as a Code node operator. Since Coda is a permissionless peer-to-peer network, everything is managed and run in a decentralized manner by nodes all over the world. Similarly, the Coda project is also distributed and permissionless to join. The code is all open source, and there is much work to be done, both technical and non-technical. To learn more about how you can get involved with Coda, please check out the [Contributing to Coda section](./contributing).

frontend/website/pages/docs/snarks/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SNARKs are a powerful cryptographic tool that enable applications
77
that give users unprecedented levels of oversight and privacy.
88
They are also a key-ingredient in building scalable decentralized systems like Coda.
99

10-
For a high-level overview, check out [this blogpost](https://codaprotocol.com/blog/zkp-guide.html).
10+
For a high-level overview, check out [this blogpost](/blog/zero-knowledge-proofs-an-intuitive-explanation).
1111

1212
**snarky** is a domain specific language for using SNARKs.
1313
This section is intended to be a guide on how to get started using SNARKs in

0 commit comments

Comments
 (0)