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

chore: Use lowercases for github organization name #59

Merged
merged 1 commit into from
Nov 21, 2023
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
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [
[workspace.package]
authors = ["Haderech Pte. Ltd."]
edition = "2021"
repository = "https://github.com/NoirHQ/noir/"
repository = "https://github.com/noirhq/noir/"

[workspace.dependencies]
array-bytes = "6.0"
Expand Down Expand Up @@ -132,11 +132,11 @@ pallet-evm-precompile-sha3fips = { git = "https://github.com/paritytech/frontier
pallet-evm-precompile-simple = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v1.1.0", default-features = false }

# horizon
hc-rpc = { git = "https://github.com/NoirHQ/horizon", branch = "polkadot-v1.1.0" }
hp-crypto = { git = "https://github.com/NoirHQ/horizon", branch = "polkadot-v1.1.0", default-features = false }
hp-rpc = { git = "https://github.com/NoirHQ/horizon", branch = "polkadot-v1.1.0", default-features = false }
hp-cosmos = { git = "https://github.com/NoirHQ/horizon", branch = "polkadot-v1.1.0", default-features = false }
pallet-cosmos = { git = "https://github.com/NoirHQ/horizon", branch = "polkadot-v1.1.0", default-features = false }
hc-rpc = { git = "https://github.com/noirhq/horizon", branch = "polkadot-v1.1.0" }
hp-crypto = { git = "https://github.com/noirhq/horizon", branch = "polkadot-v1.1.0", default-features = false }
hp-rpc = { git = "https://github.com/noirhq/horizon", branch = "polkadot-v1.1.0", default-features = false }
hp-cosmos = { git = "https://github.com/noirhq/horizon", branch = "polkadot-v1.1.0", default-features = false }
pallet-cosmos = { git = "https://github.com/noirhq/horizon", branch = "polkadot-v1.1.0", default-features = false }

[profile.release]
panic = "unwind"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Noir

[![GitHub License](https://img.shields.io/badge/license-GPL3%2FApache2-blue)](#LICENSE) [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/NoirHQ/noir/ci.yml?event=push)](https://github.com/NoirHQ/noir)
[![GitHub License](https://img.shields.io/badge/license-GPL3%2FApache2-blue)](#LICENSE) [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/noirhq/noir/ci.yml?event=push)](https://github.com/noirhq/noir)

Implementation of Noir, a metaprotocol for connecting heterogeneous distributed
systems.
Expand Down
2 changes: 1 addition & 1 deletion node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ impl SubstrateCli for Cli {
}

fn support_url() -> String {
"https://github.com/NoirHQ/noir/issues/new".into()
"https://github.com/noirhq/noir/issues/new".into()
}

fn copyright_start_year() -> i32 {
Expand Down