Skip to content

Commit

Permalink
Merge pull request #841
Browse files Browse the repository at this point in the history
chore: Update RPC node display names to hydration
  • Loading branch information
mrq1911 authored Jun 21, 2024
2 parents f8df96e + 16c9715 commit d5f7005
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
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

0 comments on commit d5f7005

Please sign in to comment.