Skip to content

Commit cc540d5

Browse files
authored
chore(docs): changes to url (#3242)
changes to url
1 parent 5f8e820 commit cc540d5

10 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/docs_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ jobs:
5151
with:
5252
github_token: ${{ secrets.GITHUB_TOKEN }}
5353
publish_dir: ./docs/.vitepress/dist
54-
cname: ev.xyz
54+
cname: docs.ev.xyz

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,4 @@ just proto-lint
127127
| 2024/01/12 | [Informal Systems](https://informal.systems/) | [eccdd...bcb9d](https://github.com/evstack/ev-node/commit/eccdd0f1793a5ac532011ef4d896de9e0d8bcb9d) | [informal-systems.pdf](docs/audit/informal-systems.pdf) |
128128
| 2024/01/10 | [Binary Builders](https://binary.builders/) | [eccdd...bcb9d](https://github.com/evstack/ev-node/commit/eccdd0f1793a5ac532011ef4d896de9e0d8bcb9d) | [binary-builders.pdf](docs/audit/binary-builders.pdf) |
129129

130-
[docs]: <https://ev.xyz>
130+
[docs]: <https://docs.ev.xyz>

apps/grpc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,6 @@ If you have issues connecting to the DA layer:
149149

150150
## See Also
151151

152-
- [Evolve Documentation](https://ev.xyz)
152+
- [Evolve Documentation](https://docs.ev.xyz)
153153
- [gRPC Execution Interface](../../execution/grpc/README.md)
154154
- [Single Sequencer Documentation](../../pkg/sequencers/single/README.md)

docs/.vitepress/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default withMermaid({
2626
appearance: false,
2727
base: base,
2828
sitemap: {
29-
hostname: "https://ev.xyz",
29+
hostname: "https://docs.ev.xyz",
3030
},
3131

3232
head: [
@@ -71,7 +71,7 @@ export default withMermaid({
7171
"script",
7272
{
7373
src: "https://plausible.celestia.org/js/plausible.js",
74-
"data-domain": "ev.xyz",
74+
"data-domain": "docs.ev.xyz",
7575
defer: "",
7676
},
7777
],

docs/concepts/block-lifecycle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,4 +702,4 @@ See [tutorial] for running a multi-node network with both aggregator and non-agg
702702
[Syncer]: https://github.com/evstack/ev-node/blob/main/block/internal/syncing/syncer.go
703703
[Cache Manager]: https://github.com/evstack/ev-node/blob/main/block/internal/cache/manager.go
704704
[Components]: https://github.com/evstack/ev-node/blob/main/block/components.go
705-
[tutorial]: https://ev.xyz/guides/full-node
705+
[tutorial]: https://docs.ev.xyz/guides/full-node

docs/guides/evm/reth-backup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This guide covers how to backup the reth state of a Evolve EVM based blockchain.
88

99
Before starting, ensure you have:
1010

11-
- A running Evolve full node - Follow the [Evolve Full Node Setup Guide](https://ev.xyz/guides/full-node) to set up your node
11+
- A running Evolve full node - Follow the [Evolve Full Node Setup Guide](https://docs.ev.xyz/guides/full-node) to set up your node
1212
- Zstandard (zstd) compression tool installed
1313
- jq JSON processor installed
1414
- Administrative access to the Docker host

docs/learn/specs/block-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,4 +755,4 @@ See [tutorial] for running a multi-node network with both aggregator and non-agg
755755
[Syncer]: https://github.com/evstack/ev-node/blob/main/block/internal/syncing/syncer.go
756756
[Cache Manager]: https://github.com/evstack/ev-node/blob/main/block/internal/cache/manager.go
757757
[Components]: https://github.com/evstack/ev-node/blob/main/block/components.go
758-
[tutorial]: https://ev.xyz/guides/full-node
758+
[tutorial]: https://docs.ev.xyz/guides/full-node

docs/public/install-go.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fi
1313
# if jq is not installed then install it using the script
1414
if ! command -v jq &> /dev/null; then
1515
echo "jq is not installed. Downloading and executing the script to install jq..."
16-
curl -sSL https://ev.xyz/install-jq.sh | bash
16+
curl -sSL https://docs.ev.xyz/install-jq.sh | bash
1717
fi
1818

1919
# Define the Go binary path

docs/public/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ echo -e " Required Go version: ${BOLD}${formatted_go_version}${RESET}\n"
6666
print_header "Checking if Go is installed..."
6767
if ! which go > /dev/null; then
6868
print_warning "Go is not installed. Attempting to install Go..."
69-
curl -sL "https://ev.xyz/install-go.sh" | sh -s "$formatted_go_version"
69+
curl -sL "https://docs.ev.xyz/install-go.sh" | sh -s "$formatted_go_version"
7070
fi
7171

7272
installed_version=$(go version | awk '{print $3}' | sed 's/go//')

docs/reference/specs/block-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -756,4 +756,4 @@ See [tutorial] for running a multi-node network with both aggregator and non-agg
756756
[Syncer]: https://github.com/evstack/ev-node/blob/main/block/internal/syncing/syncer.go
757757
[Cache Manager]: https://github.com/evstack/ev-node/blob/main/block/internal/cache/manager.go
758758
[Components]: https://github.com/evstack/ev-node/blob/main/block/components.go
759-
[tutorial]: https://ev.xyz/guides/full-node
759+
[tutorial]: https://docs.ev.xyz/guides/full-node

0 commit comments

Comments
 (0)