From 2fd45064dc2aa6d8c62dd298a33e717d6a2270e4 Mon Sep 17 00:00:00 2001 From: tac0turtle Date: Mon, 13 Apr 2026 12:14:39 +0200 Subject: [PATCH] changes to url --- .github/workflows/docs_deploy.yml | 2 +- README.md | 2 +- apps/grpc/README.md | 2 +- docs/.vitepress/config.ts | 4 ++-- docs/concepts/block-lifecycle.md | 2 +- docs/guides/evm/reth-backup.md | 2 +- docs/learn/specs/block-manager.md | 2 +- docs/public/install-go.sh | 2 +- docs/public/install.sh | 2 +- docs/reference/specs/block-manager.md | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/docs_deploy.yml b/.github/workflows/docs_deploy.yml index 7b2d65ec40..ab709f565b 100644 --- a/.github/workflows/docs_deploy.yml +++ b/.github/workflows/docs_deploy.yml @@ -51,4 +51,4 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./docs/.vitepress/dist - cname: ev.xyz + cname: docs.ev.xyz diff --git a/README.md b/README.md index 03bb860836..9d91ad07cb 100644 --- a/README.md +++ b/README.md @@ -127,4 +127,4 @@ just proto-lint | 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) | | 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) | -[docs]: +[docs]: diff --git a/apps/grpc/README.md b/apps/grpc/README.md index 22d94a2233..a2d1f2ae11 100644 --- a/apps/grpc/README.md +++ b/apps/grpc/README.md @@ -149,6 +149,6 @@ If you have issues connecting to the DA layer: ## See Also -- [Evolve Documentation](https://ev.xyz) +- [Evolve Documentation](https://docs.ev.xyz) - [gRPC Execution Interface](../../execution/grpc/README.md) - [Single Sequencer Documentation](../../pkg/sequencers/single/README.md) diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index 9b5ff5f1c2..0cfdf5c7ae 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -26,7 +26,7 @@ export default withMermaid({ appearance: false, base: base, sitemap: { - hostname: "https://ev.xyz", + hostname: "https://docs.ev.xyz", }, head: [ @@ -71,7 +71,7 @@ export default withMermaid({ "script", { src: "https://plausible.celestia.org/js/plausible.js", - "data-domain": "ev.xyz", + "data-domain": "docs.ev.xyz", defer: "", }, ], diff --git a/docs/concepts/block-lifecycle.md b/docs/concepts/block-lifecycle.md index a344bff549..91e835dea8 100644 --- a/docs/concepts/block-lifecycle.md +++ b/docs/concepts/block-lifecycle.md @@ -702,4 +702,4 @@ See [tutorial] for running a multi-node network with both aggregator and non-agg [Syncer]: https://github.com/evstack/ev-node/blob/main/block/internal/syncing/syncer.go [Cache Manager]: https://github.com/evstack/ev-node/blob/main/block/internal/cache/manager.go [Components]: https://github.com/evstack/ev-node/blob/main/block/components.go -[tutorial]: https://ev.xyz/guides/full-node +[tutorial]: https://docs.ev.xyz/guides/full-node diff --git a/docs/guides/evm/reth-backup.md b/docs/guides/evm/reth-backup.md index a0ec14bc5d..1051b5ea50 100644 --- a/docs/guides/evm/reth-backup.md +++ b/docs/guides/evm/reth-backup.md @@ -8,7 +8,7 @@ This guide covers how to backup the reth state of a Evolve EVM based blockchain. Before starting, ensure you have: -- A running Evolve full node - Follow the [Evolve Full Node Setup Guide](https://ev.xyz/guides/full-node) to set up your node +- A running Evolve full node - Follow the [Evolve Full Node Setup Guide](https://docs.ev.xyz/guides/full-node) to set up your node - Zstandard (zstd) compression tool installed - jq JSON processor installed - Administrative access to the Docker host diff --git a/docs/learn/specs/block-manager.md b/docs/learn/specs/block-manager.md index 0801bd5414..5547197a81 100644 --- a/docs/learn/specs/block-manager.md +++ b/docs/learn/specs/block-manager.md @@ -755,4 +755,4 @@ See [tutorial] for running a multi-node network with both aggregator and non-agg [Syncer]: https://github.com/evstack/ev-node/blob/main/block/internal/syncing/syncer.go [Cache Manager]: https://github.com/evstack/ev-node/blob/main/block/internal/cache/manager.go [Components]: https://github.com/evstack/ev-node/blob/main/block/components.go -[tutorial]: https://ev.xyz/guides/full-node +[tutorial]: https://docs.ev.xyz/guides/full-node diff --git a/docs/public/install-go.sh b/docs/public/install-go.sh index 6fa2bf0ed1..6f2af9a1b7 100644 --- a/docs/public/install-go.sh +++ b/docs/public/install-go.sh @@ -13,7 +13,7 @@ fi # if jq is not installed then install it using the script if ! command -v jq &> /dev/null; then echo "jq is not installed. Downloading and executing the script to install jq..." - curl -sSL https://ev.xyz/install-jq.sh | bash + curl -sSL https://docs.ev.xyz/install-jq.sh | bash fi # Define the Go binary path diff --git a/docs/public/install.sh b/docs/public/install.sh index 2b5ee57289..36e291a073 100755 --- a/docs/public/install.sh +++ b/docs/public/install.sh @@ -66,7 +66,7 @@ echo -e " Required Go version: ${BOLD}${formatted_go_version}${RESET}\n" print_header "Checking if Go is installed..." if ! which go > /dev/null; then print_warning "Go is not installed. Attempting to install Go..." - curl -sL "https://ev.xyz/install-go.sh" | sh -s "$formatted_go_version" + curl -sL "https://docs.ev.xyz/install-go.sh" | sh -s "$formatted_go_version" fi installed_version=$(go version | awk '{print $3}' | sed 's/go//') diff --git a/docs/reference/specs/block-manager.md b/docs/reference/specs/block-manager.md index c97171f90e..86bbd5927d 100644 --- a/docs/reference/specs/block-manager.md +++ b/docs/reference/specs/block-manager.md @@ -756,4 +756,4 @@ See [tutorial] for running a multi-node network with both aggregator and non-agg [Syncer]: https://github.com/evstack/ev-node/blob/main/block/internal/syncing/syncer.go [Cache Manager]: https://github.com/evstack/ev-node/blob/main/block/internal/cache/manager.go [Components]: https://github.com/evstack/ev-node/blob/main/block/components.go -[tutorial]: https://ev.xyz/guides/full-node +[tutorial]: https://docs.ev.xyz/guides/full-node