Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated readme with new naming #60

Merged
merged 3 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
More renamings in comments and URLs
  • Loading branch information
DanieleDiBenedetto committed May 21, 2024
commit c75c99a1446eada2aab6dcdf4eff5c67df529225
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[workspace.package]
authors = ["Horizen Labs <[email protected]>"]
edition = "2021"
repository = "https://github.com/HorizenLabs/NH-core"
repository = "https://github.com/HorizenLabs/zkVerify"
homepage = "https://horizenlabs.io"

[workspace]
Expand Down
6 changes: 3 additions & 3 deletions docker/dockerfiles/binary_injected.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ ARG IMAGE_NAME
ARG BINARY=nh-node

ARG BIN_FOLDER=.
ARG DOC_URL=https://github.com/HorizenLabs/NH-core
ARG DESCRIPTION="NH-core"
ARG DOC_URL=https://github.com/HorizenLabs/zkVerify
ARG DESCRIPTION="zkVerify"
ARG AUTHORS="[email protected]"
ARG VENDOR="Horizen Labs"

Expand All @@ -23,7 +23,7 @@ LABEL io.hl.image.authors=${AUTHORS} \
io.hl.image.created="${BUILD_DATE}" \
io.hl.image.documentation="${DOC_URL}" \
io.hl.image.description="${DESCRIPTION}" \
io.hl.image.source="https://github.com/HorizenLabs/NH-core/blob/${VCS_REF}/docker/dockerfiles/binary_injected.Dockerfile"
io.hl.image.source="https://github.com/HorizenLabs/zkVerify/blob/${VCS_REF}/docker/dockerfiles/binary_injected.Dockerfile"

USER root
WORKDIR /app
Expand Down
4 changes: 2 additions & 2 deletions docker/dockerfiles/hl-node.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ SHELL ["/bin/bash", "-c"]

# That can be a single one or a comma separated list
ARG BINARY=nh-node
ARG DESCRIPTION="New Horizen Core"
ARG DESCRIPTION="zkVerify Core"
ARG AUTHORS="[email protected]"
ARG VENDOR="Horizen Labs"
ARG PROFILE="release"
Expand Down Expand Up @@ -62,4 +62,4 @@ RUN apt-get update \
USER ${RUN_USER}

# ENTRYPOINT
ENTRYPOINT ["/app/entrypoint.sh"]
ENTRYPOINT ["/app/entrypoint.sh"]
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "mainchain"
version = "0.2.0"
description = "New Horizen Mainchain."
authors.workspace = true
homepage = "https://github.com/HorizenLabs/NH-core"
homepage = "https://github.com/HorizenLabs/zkVerify"
edition.workspace = true
publish = false
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "nh-runtime"
version = "0.2.0"
description = "New Horizen Mainchain Runtime."
authors.workspace = true
homepage = "https://github.com/HorizenLabs/NH-core"
homepage = "https://github.com/HorizenLabs/zkVerify"
edition.workspace = true
publish = false
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/weights/frame_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
use core::marker::PhantomData;

/// Weights for `frame_system` using the New Horizen node and recommended hardware.
/// Weights for `frame_system` using the zkVerify node and recommended hardware.
pub struct NHWeight<T>(PhantomData<T>);

impl<T: frame_system::Config> frame_system::WeightInfo for NHWeight<T> {
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/weights/pallet_balances.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
use core::marker::PhantomData;

/// Weights for `pallet_balances` using the New Horizen node and recommended hardware.
/// Weights for `pallet_balances` using the zkVerify node and recommended hardware.
pub struct NHWeight<T>(PhantomData<T>);

impl<T: frame_system::Config> pallet_balances::WeightInfo for NHWeight<T> {
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/weights/pallet_im_online.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
use core::marker::PhantomData;

/// Weights for `pallet_im_online` using the New Horizen node and recommended hardware.
/// Weights for `pallet_im_online` using the zkVerify node and recommended hardware.
pub struct NHWeight<T>(PhantomData<T>);

impl<T: frame_system::Config> pallet_im_online::WeightInfo for NHWeight<T> {
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/weights/pallet_poe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
use core::marker::PhantomData;

/// Weights for `pallet_poe` using the New Horizen node and recommended hardware.
/// Weights for `pallet_poe` using the zkVerify node and recommended hardware.
pub struct NHWeight<T>(PhantomData<T>);

impl<T: frame_system::Config> pallet_poe::WeightInfo for NHWeight<T> {
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/weights/pallet_settlement_fflonk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
use core::marker::PhantomData;

/// Weights for `pallet_settlement_fflonk` using the New Horizen node and recommended hardware.
/// Weights for `pallet_settlement_fflonk` using the zkVerify node and recommended hardware.
pub struct NHWeight<T>(PhantomData<T>);

impl<T: frame_system::Config> pallet_settlement_fflonk::WeightInfo for NHWeight<T> {
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/weights/pallet_settlement_zksync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
use core::marker::PhantomData;

/// Weights for `pallet_settlement_zksync` using the New Horizen node and recommended hardware.
/// Weights for `pallet_settlement_zksync` using the zkVerify node and recommended hardware.
pub struct NHWeight<T>(PhantomData<T>);

impl<T: frame_system::Config> pallet_settlement_zksync::WeightInfo for NHWeight<T> {
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/weights/pallet_sudo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
use core::marker::PhantomData;

/// Weights for `pallet_sudo` using the New Horizen node and recommended hardware.
/// Weights for `pallet_sudo` using the zkVerify node and recommended hardware.
pub struct NHWeight<T>(PhantomData<T>);

impl<T: frame_system::Config> pallet_sudo::WeightInfo for NHWeight<T> {
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/weights/pallet_timestamp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
use core::marker::PhantomData;

/// Weights for `pallet_timestamp` using the New Horizen node and recommended hardware.
/// Weights for `pallet_timestamp` using the zkVerify node and recommended hardware.
pub struct NHWeight<T>(PhantomData<T>);

impl<T: frame_system::Config> pallet_timestamp::WeightInfo for NHWeight<T> {
Expand Down
2 changes: 1 addition & 1 deletion scripts/run_all_benchmarks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ EXCLUDED_PALLETS=(
# "pallet_im_online" "frame_benchmarking" "frame_system" "pallet_balances"
)

echo "[+] Benchmarking ${#PALLETS[@]} nh-core pallets. (IGNORE SET [${#EXCLUDED_PALLETS[@]}])"
echo "[+] Benchmarking ${#PALLETS[@]} zkVerify pallets. (IGNORE SET [${#EXCLUDED_PALLETS[@]}])"


is_pallet_excluded() {
Expand Down
Loading