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
4 changes: 2 additions & 2 deletions .github/actions/debian/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ runs:
Maintainer: Miden <devops@miden.team>
Description: $pkg binary package
Homepage: https://miden.xyz
Vcs-Git: git@github.com:0xMiden/miden-node.git
Vcs-Browser: https://github.com/0xMiden/miden-node
Vcs-Git: git@github.com:0xMiden/node.git
Vcs-Browser: https://github.com/0xMiden/node
EOF

- name: Build binaries
Expand Down
348 changes: 174 additions & 174 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ exclude = [".github/"]
homepage = "https://miden.xyz"
license = "MIT"
readme = "README.md"
repository = "https://github.com/0xMiden/miden-node"
repository = "https://github.com/0xMiden/node"
rust-version = "1.91"
version = "0.14.0"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Miden node

[![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/0xMiden/miden-node/blob/main/LICENSE)
[![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/0xMiden/node/blob/main/LICENSE)
[![CI](https://github.com/0xMiden/node/actions/workflows/ci.yml/badge.svg)](https://github.com/0xMiden/node/actions/workflows/ci.yml)
[![RUST_VERSION](https://img.shields.io/badge/rustc-1.90+-lightgray.svg)](https://www.rust-lang.org/tools/install)
[![crates.io](https://img.shields.io/crates/v/miden-node)](https://crates.io/crates/miden-node)
Expand Down
4 changes: 2 additions & 2 deletions bin/node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ FROM runtime-base AS runtime
COPY --from=builder /app/target/release/miden-node /usr/local/bin/miden-node
LABEL org.opencontainers.image.authors=devops@miden.team \
org.opencontainers.image.url=https://0xMiden.github.io/ \
org.opencontainers.image.documentation=https://github.com/0xMiden/miden-node \
org.opencontainers.image.source=https://github.com/0xMiden/miden-node \
org.opencontainers.image.documentation=https://github.com/0xMiden/node \
org.opencontainers.image.source=https://github.com/0xMiden/node \
org.opencontainers.image.vendor=Miden \
org.opencontainers.image.licenses=MIT
ARG CREATED
Expand Down
8 changes: 4 additions & 4 deletions bin/remote-prover/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This enables weaker devices to offload the proof generation to a beefy remote se
The implementation provides a configurable request queue and proves one request at a time in FIFO order. This is not intended to cover
complex proxy setups nor load-balancing, but can instead be used as a starting point for more advanced setups.

The gRPC specification can be found in the [Miden repository](https://github.com/0xMiden/miden-node/blob/main/proto/proto/remote_prover.proto).
The gRPC specification can be found in the [Miden repository](https://github.com/0xMiden/node/blob/main/proto/proto/remote_prover.proto).
Ensure you are viewing the appropriate version tag or commit.

## Quick start
Expand Down Expand Up @@ -43,8 +43,8 @@ Install the Debian package:
```bash
set -e

sudo wget https://github.com/0xMiden/miden-node/releases/download/v0.8/miden-prover-v0.8-arm64.deb -O prover.deb
sudo wget -q -O - https://github.com/0xMiden/miden-node/releases/download/v0.8/miden-prover-v0.8-arm64.deb.checksum | awk '{print $1}' | sudo tee prover.checksum
sudo wget https://github.com/0xMiden/node/releases/download/v0.8/miden-prover-v0.8-arm64.deb -O prover.deb
sudo wget -q -O - https://github.com/0xMiden/node/releases/download/v0.8/miden-prover-v0.8-arm64.deb.checksum | awk '{print $1}' | sudo tee prover.checksum
sudo sha256sum prover.deb | awk '{print $1}' > prover.sha256
sudo diff prover.sha256 prover.checksum
sudo dpkg -i prover.deb
Expand Down Expand Up @@ -125,7 +125,7 @@ The server implements the following health and status related gRPC services:

- [gRPC Health Check](https://grpc.io/docs/guides/health-checking/)
- [gRPC Reflection](https://grpc.io/docs/guides/reflection/)
- [WorkerStatusApi](https://github.com/0xMiden/miden-node/blob/main/proto/proto/remote_prover.proto)
- [WorkerStatusApi](https://github.com/0xMiden/node/blob/main/proto/proto/remote_prover.proto)

The server supports OpenTelemetry traces which can be configured using the environment variables specified in the OpenTelemetry documentation.

Expand Down
2 changes: 1 addition & 1 deletion crates/store/src/state/loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ pub async fn load_smt_forest(
// Process each account in this page
for account_id in page.account_ids {
// TODO: Loading the full account from the database is inefficient and will need to
// go away. <https://github.com/0xMiden/miden-node/issues/1556>
// go away. <https://github.com/0xMiden/node/issues/1556>
let account_info = db.select_account(account_id).await?;
let account = account_info
.details
Expand Down
2 changes: 1 addition & 1 deletion docs/external/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ interface for users, dApps, wallets and other clients to submit transactions and
## Feedback

Please report any issues, ask questions or leave feedback in the node repository
[here](https://github.com/0xMiden/miden-node/issues/new/choose).
[here](https://github.com/0xMiden/node/issues/new/choose).

This includes outdated, misleading, incorrect or just plain confusing information :)
2 changes: 1 addition & 1 deletion docs/external/src/operator/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Welcome to the `Miden` node operator guide which should cover everything you nee
Miden node.

You can report any issues, ask questions or leave feedback at our project repo
[here](https://github.com/0xMiden/miden-node/issues/new/choose).
[here](https://github.com/0xMiden/node/issues/new/choose).
8 changes: 4 additions & 4 deletions docs/external/src/operator/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ We provide Debian packages for official releases for the node software. Alternat

## Debian package

Official Debian packages are available under our [releases](https://github.com/0xMiden/miden-node/releases) page.
Official Debian packages are available under our [releases](https://github.com/0xMiden/node/releases) page.
Both `amd64` and `arm64` packages are available.

Note that the packages include a `systemd` service which is disabled by default.
Expand Down Expand Up @@ -69,13 +69,13 @@ this for advanced use only. The incantation is a little different as you'll be t

```sh
# Install from a specific branch
cargo install --locked --git https://github.com/0xMiden/miden-node miden-node --branch <branch>
cargo install --locked --git https://github.com/0xMiden/node miden-node --branch <branch>

# Install a specific tag
cargo install --locked --git https://github.com/0xMiden/miden-node miden-node --tag <tag>
cargo install --locked --git https://github.com/0xMiden/node miden-node --tag <tag>

# Install a specific git revision
cargo install --locked --git https://github.com/0xMiden/miden-node miden-node --rev <git-sha>
cargo install --locked --git https://github.com/0xMiden/node miden-node --rev <git-sha>
```

More information on the various `cargo install` options can be found
Expand Down
2 changes: 1 addition & 1 deletion docs/external/src/operator/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,4 @@ source profile.env && miden-node <...>

This works well on Linux and MacOS, but Windows requires some additional scripting unfortunately.

See the `.env` files in each of the binary crates' [directories](https://github.com/0xMiden/miden-node/tree/next/bin) for a list of all available environment variables.
See the `.env` files in each of the binary crates' [directories](https://github.com/0xMiden/node/tree/next/bin) for a list of all available environment variables.
2 changes: 1 addition & 1 deletion docs/external/src/rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sidebar_position: 1

This is a reference of the Node's public RPC interface. It consists of a gRPC API which may be used to submit transactions and query the state of the blockchain.

The gRPC service definition can be found in the Miden node's `proto` [directory](https://github.com/0xMiden/miden-node/tree/main/proto) in the `rpc.proto` file.
The gRPC service definition can be found in the Miden node's `proto` [directory](https://github.com/0xMiden/node/tree/main/proto) in the `rpc.proto` file.

<!--toc:start-->

Expand Down
2 changes: 1 addition & 1 deletion docs/internal/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ multilingual = false
title = "The Miden Node Developer Guide"

[output.html]
git-repository-url = "https://github.com/0xMiden/miden-node"
git-repository-url = "https://github.com/0xMiden/node"

[preprocessor.katex]
after = ["links"]
Expand Down
2 changes: 1 addition & 1 deletion docs/internal/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ It is also a good idea to familiarise yourself with the [operator manual](https:
Living documents go stale - the code is the final arbitrator of truth.

If you encounter any outdated, incorrect or misleading information, please
[open an issue](https://github.com/0xMiden/miden-node/issues/new/choose).
[open an issue](https://github.com/0xMiden/node/issues/new/choose).

</div>
Loading