From 08ca7f13dc1f4d3f41436b181132fec834062b05 Mon Sep 17 00:00:00 2001 From: MarkSackerberg <93528482+MarkSackerberg@users.noreply.github.com> Date: Wed, 11 Sep 2024 15:29:43 +0200 Subject: [PATCH] use solana.fm --- src/verify/process.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/verify/process.rs b/src/verify/process.rs index 27011b74..1e9968df 100644 --- a/src/verify/process.rs +++ b/src/verify/process.rs @@ -206,8 +206,8 @@ pub fn process_verify(args: VerifyArgs) -> Result<()> { } let cluster = match get_cluster(program.rpc())? { - Cluster::Devnet => "devnet", - Cluster::Mainnet => "mainnet", + Cluster::Devnet => "devnet-alpha", + Cluster::Mainnet => "mainnet-alpha", Cluster::Localnet => "localnet", Cluster::Unknown => "", }; @@ -216,7 +216,7 @@ pub fn process_verify(args: VerifyArgs) -> Result<()> { println!("\nVerification successful. You're good to go!"); } else { println!( - "\nVerification successful. You're good to go!\n\nSee your candy machine at:\n -> https://www.solaneyes.com/address/{}?cluster={}", + "\nVerification successful. You're good to go!\n\nSee your candy machine at:\n -> https://www.solana.fm/address/{}?cluster={}", cache.program.candy_machine, cluster );