Skip to content

Commit 035fdcd

Browse files
chore: remove old redirects file (#461)
also renames prividium overview page to fix loading
1 parent 6462708 commit 035fdcd

12 files changed

Lines changed: 166 additions & 578 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@ bun run lint:eslint
9090

9191
We welcome contributions from the community! Check out the following resources to get started:
9292

93-
- [Contribution Overview](https://docs.zksync.io/build/contributing-to-documentation)
93+
- [Contribution Overview](https://docs.zksync.io/zksync-network/contributing/documentation)
9494
- To get started with the project locally and learn how to submit PRs for the project,
95-
read the [Contribution Guidelines](https://docs.zksync.io/build/contributing-to-documentation/contribution-guidelines)
95+
read the [Contribution Guidelines](/zksync-network/contributing/documentation/contribution-guidelines)
9696
- To learn how to write your content for documentation, read the
97-
[Documentation Styleguide](https://docs.zksync.io/build/contributing-to-documentation/documentation-styleguide)
97+
[Documentation Styleguide](https://docs.zksync.io/zksync-network/contributing/documentation/documentation-styleguide)
9898

9999
### Check out Community Code
100100

SUPPORT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ We have multiple channels available for you to request help.
66
## Where to get help
77

88
If you're in need of help with authoring your content for ZKsync Docs,
9-
first read through the [Contribution Guidelines](https://docs.zksync.io/build/contributing-to-documentation/contribution-guidelines)
9+
first read through the [Contribution Guidelines](https://docs.zksync.io/zksync-network/contributing/documentation/contribution-guidelines)
1010
to see if it may help answer some questions.
1111
If the content there does not solve your problem, submit an [issue in GitHub](https://github.com/matter-labs/zksync-docs/issues)
1212
and we can try to help resolve the issue.
@@ -19,7 +19,7 @@ that may help with any troubleshooting.
1919

2020
If you have questions related to any of our ZKsync tools,
2121
we recommend that you submit an Issue related to that project.
22-
You can find the list of our open-source repositories in the [Contribution Track](https://docs.zksync.io/build/resources/contribution-track)
22+
You can find the list of our open-source repositories in the [Contribution Track](https://docs.zksync.io/zksync-network/contributing/code)
2323
on our ZKsync Docs site.
2424

2525
## 🪲 Submit a bug report

composables/useCategory.ts

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,14 @@ const defaultCategory = 'ZKsync Docs';
33
// Order by most specific to least specific.
44
// e.g. `/js/ethers/api/v5` before `/js/ethers`
55
const categories = [
6-
['/build/start-coding/quick-start', 'Quick Start ZKsync'],
7-
['/build/start-coding/zksync-101', 'ZKsync 101 Tutorial'],
8-
['/build/zksync-cli', 'ZKsync CLI'],
9-
['/build/tooling/hardhat', 'Hardhat'],
10-
['/build/tooling/foundry', 'Foundry'],
11-
['/build/developer-reference', 'Developer Reference'],
12-
['/build/api-reference', 'ZKsync API'],
13-
['/build/resources', 'Resources'],
14-
['/build', 'Build'],
15-
['/zk-stack/running-a-zk-chain', 'Running a ZK Chain'],
6+
['/zksync-network/guides/quick-start', 'Quick Start ZKsync'],
7+
['/zksync-network/guides/zksync-101', 'ZKsync 101 Tutorial'],
8+
['/zksync-network/tooling/zksync-cli', 'ZKsync CLI'],
9+
['/zksync-network/tooling/hardhat', 'Hardhat'],
10+
['/zksync-network/tooling/foundry/overview', 'Foundry'],
11+
['/zk-stack/running/quickstart', 'Running a ZK Chain'],
1612
['/zk-stack', 'ZK Stack'],
17-
['/zksync-node', 'ZKsync Node'],
18-
['/ecosystem', 'Ecosystem'],
13+
['/zksync-network/ecosystem', 'Ecosystem'],
1914
] as const;
2015

2116
/**

content/00.zksync-network/10.guides/20.zksync-101/40.upgrading.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ lead you through the strategies and practices for making the `CrowdfundingCampai
1515

1616
## Setup the project
1717

18-
Make sure to go through the setup provided in the initial [Getting started](/build/start-coding/zksync-101) section.
18+
Make sure to go through the setup provided in the initial [Getting started](/zksync-network/guides/zksync-101) section.
1919
You will have downloaded the 101 project through ZKsync CLI `create` and started up a local in-memory node for development.
2020

2121
---

content/00.zksync-network/10.guides/20.zksync-101/_hello/_era-vm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ We are going to use the "in-memory node" module for our local node setup.
7171
zksync-cli dev start
7272
```
7373

74-
`anvil-zksync` node includes pre-configured rich wallets for use, see [anvil-zksync rich wallets](/build/test-and-debug/in-memory-node#pre-configured-rich-wallets).
74+
`anvil-zksync` node includes pre-configured rich wallets for use, see [anvil-zksync rich wallets](/zksync-network/tooling/local-setup/anvil-zksync-node#pre-configured-rich-wallets).
7575

7676
Your `anvil-zksync` node is accessible at **[http://127.0.0.1:8011](http://127.0.0.1:8011/)**, ready for deployment or testing purposes.
7777
You can use the Docker Desktop app to view logs from the running ZKsync Era node or use the `zksync-cli dev logs` command.
7878

7979
When you are done running your `anvil-zksync` node, you can stop it with `zksync-cli dev stop`.
80-
You can learn more about managing a local node with ZKsync CLI on [Running a node](/build/zksync-cli/running-a-node).
80+
You can learn more about managing a local node with ZKsync CLI on [Running a node](/zksync-network/tooling/zksync-cli/running-a-node).
8181

8282
### Configuring a Hardhat Wallet
8383

content/00.zksync-network/10.guides/30.testing/10.testing-with-hardhat.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ and we'll use [Mocha](https://mochajs.org/) as our test runner.
1414

1515
### Prerequisites
1616

17-
- `zksync-cli` installed from the [zksync-cli section](/build/zksync-cli).
18-
- `anvil-zksync` installed. See [anvil-zksync](/build/test-and-debug/in-memory-node).
17+
- `zksync-cli` installed from the [zksync-cli section](/zksync-network/tooling/zksync-cli).
18+
- `anvil-zksync` installed. See [anvil-zksync](/zksync-network/tooling/local-setup/anvil-zksync-node).
1919

2020
---
2121
## Environment setup

content/00.zksync-network/40.tooling/10.local-setup/20.dockerized-l1-l2-nodes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ The initialization might take up to 10 minutes initially.
6161

6262
Default endpoints:
6363

64-
- **L1 RPC**: <http://localhost:8545>
65-
- **L2 RPC**: <http://localhost:3050>
66-
- **WS API**: <ws://localhost:3051>
64+
- **L1 RPC**: `http://localhost:8545`
65+
- **L2 RPC**: `http://localhost:3050`
66+
- **WS API**: `ws://localhost:3051`
6767

6868
**Network Id**: 270
6969

content/00.zksync-network/40.tooling/20.hardhat/30.plugins/120.hardhat-zksync-node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ tags: ["hardhat", "zksync", "node", "plugins", "ethereum"]
66

77
## Description
88

9-
The `hardhat-zksync-node` plugin provides a convenient way to run [anvil-zksync](/build/test-and-debug/in-memory-node) locally using Hardhat.
9+
The `hardhat-zksync-node` plugin provides a convenient way to run [anvil-zksync](/zksync-network/tooling/local-setup/anvil-zksync-node) locally using Hardhat.
1010
It adds ZKSync-specific provider functionality to the Hardhat Runtime Environment (HRE) and provides helpers for running local nodes.
1111

1212
**Resources**:
File renamed without changes.

0 commit comments

Comments
 (0)