Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/.vitepress/dist
cname: ev.xyz
cname: docs.ev.xyz
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]: <https://ev.xyz>
[docs]: <https://docs.ev.xyz>
2 changes: 1 addition & 1 deletion apps/grpc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
4 changes: 2 additions & 2 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default withMermaid({
appearance: false,
base: base,
sitemap: {
hostname: "https://ev.xyz",
hostname: "https://docs.ev.xyz",
},

head: [
Expand Down Expand Up @@ -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: "",
},
],
Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/block-lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion docs/guides/evm/reth-backup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/learn/specs/block-manager.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion docs/public/install-go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/public/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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//')
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/specs/block-manager.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading