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: Update RPC node display names to hydration #841

Merged
merged 5 commits into from
Jun 21, 2024
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 Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hydradx"
version = "13.1.0"
description = "HydraDX node"
version = "13.1.1"
description = "Hydration node"
authors = ["GalacticCouncil"]
edition = "2021"
license = "Apache 2.0"
Expand Down
2 changes: 1 addition & 1 deletion node/res/hydradx.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "HydraDX",
"name": "Hydration",
"id": "hydra",
"chainType": "Live",
"bootNodes": [
Expand Down
2 changes: 1 addition & 1 deletion node/res/moonbase.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "HydraDX testnet",
"name": "Hydration testnet",
"id": "hydra_moonbase",
"chainType": "Live",
"bootNodes": [
Expand Down
2 changes: 1 addition & 1 deletion node/res/rococo.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "HydraDX testnet",
"name": "Hydration testnet",
"id": "hydra_rococo",
"chainType": "Live",
"bootNodes": [
Expand Down
2 changes: 1 addition & 1 deletion node/src/chain_spec/local.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ pub fn parachain_config() -> Result<ChainSpec, String> {
evm_since: 1,
},
)
.with_name("HydraDX Local Testnet")
.with_name("Hydration Local Testnet")
.with_id("local_testnet")
.with_chain_type(ChainType::Local)
.with_boot_nodes(vec![])
Expand Down
2 changes: 1 addition & 1 deletion node/src/chain_spec/rococo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ pub fn _parachain_config_rococo() -> Result<ChainSpec, String> {
evm_since: 1,
},
)
.with_name("HydraDX testnet")
.with_name("Hydration testnet")
.with_id("hydra_rococo")
.with_chain_type(ChainType::Live)
.with_boot_nodes(vec![
Expand Down
2 changes: 1 addition & 1 deletion node/src/chain_spec/staging.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pub fn parachain_config() -> Result<ChainSpec, String> {
evm_since: 1,
},
)
.with_name("HydraDX")
.with_name("Hydration")
.with_id("hydra")
.with_chain_type(ChainType::Live)
.with_boot_nodes(vec![
Expand Down
4 changes: 2 additions & 2 deletions node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ fn load_spec(id: &str) -> std::result::Result<Box<dyn sc_service::ChainSpec>, St

impl SubstrateCli for Cli {
fn impl_name() -> String {
"HydraDX".into()
"Hydration".into()
}

fn impl_version() -> String {
Expand Down Expand Up @@ -89,7 +89,7 @@ impl SubstrateCli for Cli {

impl SubstrateCli for RelayChainCli {
fn impl_name() -> String {
"HydraDX".into()
"Hydration".into()
}

fn impl_version() -> String {
Expand Down
6 changes: 3 additions & 3 deletions scripts/init-testnet/assets.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"0": {
"asset": {
"name": "HydraDX",
"name": "Hydration",
"assetType": "Token",
"existentialDeposit": "1,000,000,000,000",
"xcmRateLimit": null
Expand All @@ -13,13 +13,13 @@
},
"1": {
"asset": {
"name": "Lerna",
"name": "H2O",
"assetType": "Token",
"existentialDeposit": "400,000,000",
"xcmRateLimit": null
},
"metadata": {
"symbol": "LRNA",
"symbol": "H2O",
"decimals": "12"
}
},
Expand Down
6 changes: 3 additions & 3 deletions scripts/init-testnet/evm/assets.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"0": {
"asset": {
"name": "HydraDX",
"name": "Hydration",
"assetType": "Token",
"existentialDeposit": "1,000,000,000,000",
"xcmRateLimit": null
Expand All @@ -13,13 +13,13 @@
},
"1": {
"asset": {
"name": "Lerna",
"name": "H2O",
"assetType": "Token",
"existentialDeposit": "400,000,000",
"xcmRateLimit": null
},
"metadata": {
"symbol": "LRNA",
"symbol": "H2O",
"decimals": "12"
}
},
Expand Down
Loading