From 2b13ac99b4222e5f8e970685894ba49fb352449f Mon Sep 17 00:00:00 2001 From: Yana Date: Tue, 10 Jun 2025 19:34:19 +0300 Subject: [PATCH] Replace mintscan with ping.pub --- common/commands/src/validator/account/send.rs | 2 +- common/commands/src/validator/account/send_multiple.rs | 2 +- common/commands/src/validator/vesting/withdraw_vested.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/commands/src/validator/account/send.rs b/common/commands/src/validator/account/send.rs index 7c5affd841..e02e649659 100644 --- a/common/commands/src/validator/account/send.rs +++ b/common/commands/src/validator/account/send.rs @@ -60,7 +60,7 @@ pub async fn send(args: Args, client: &SigningClient) { "Nodesguru: https://nym.explorers.guru/transaction/{}", &res.hash ); - println!("Mintscan: https://www.mintscan.io/nyx/txs/{}", &res.hash); + println!("Mintscan: https://ping.pub/nyx/tx/{}", &res.hash); println!("Transaction result code: {}", &res.tx_result.code.value()); println!("Transaction hash: {}", &res.hash); } diff --git a/common/commands/src/validator/account/send_multiple.rs b/common/commands/src/validator/account/send_multiple.rs index f19b1b6760..585aa896f3 100644 --- a/common/commands/src/validator/account/send_multiple.rs +++ b/common/commands/src/validator/account/send_multiple.rs @@ -95,7 +95,7 @@ pub async fn send_multiple(args: Args, client: &SigningClient) { "Nodesguru: https://nym.explorers.guru/transaction/{}", &res.hash ); - println!("Mintscan: https://www.mintscan.io/nyx/txs/{}", &res.hash); + println!("Mintscan: https://ping.pub/nyx/tx/{}", &res.hash); println!("Transaction result code: {}", &res.tx_result.code.value()); println!("Transaction hash: {}", &res.hash); diff --git a/common/commands/src/validator/vesting/withdraw_vested.rs b/common/commands/src/validator/vesting/withdraw_vested.rs index 2c2bf254b9..b0a1c0ab1f 100644 --- a/common/commands/src/validator/vesting/withdraw_vested.rs +++ b/common/commands/src/validator/vesting/withdraw_vested.rs @@ -76,7 +76,7 @@ pub async fn execute(args: Args, client: SigningClient) { &res.transaction_hash ); println!( - "Mintscan: https://www.mintscan.io/nyx/txs/{}", + "Mintscan: https://ping.pub/nyx/tx/{}", &res.transaction_hash ); println!("Transaction hash: {}", &res.transaction_hash);