From f5f186790b028a9fc4d7eee35b80ac13ed275846 Mon Sep 17 00:00:00 2001 From: Pranav Gaddamadugu <23022326+d0cd@users.noreply.github.com> Date: Fri, 7 Jun 2024 10:19:32 -0700 Subject: [PATCH] Fix API endpoint --- leo/cli/commands/mod.rs | 6 +++++- leo/cli/commands/query/mod.rs | 8 ++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/leo/cli/commands/mod.rs b/leo/cli/commands/mod.rs index e7a6040f57..bf40457eca 100644 --- a/leo/cli/commands/mod.rs +++ b/leo/cli/commands/mod.rs @@ -132,7 +132,11 @@ pub trait Command { /// require Build command output as their input. #[derive(Parser, Clone, Debug)] pub struct BuildOptions { - #[clap(long, help = "Endpoint to retrieve network state from.", default_value = "http://api.explorer.aleo.org/v1")] + #[clap( + long, + help = "Endpoint to retrieve network state from.", + default_value = "https://api.explorer.aleo.org/v1" + )] pub endpoint: String, #[clap(long, help = "Network to broadcast to. Defaults to mainnet.", default_value = "mainnet")] pub(crate) network: String, diff --git a/leo/cli/commands/query/mod.rs b/leo/cli/commands/query/mod.rs index 347a9bc152..be64a3a7df 100644 --- a/leo/cli/commands/query/mod.rs +++ b/leo/cli/commands/query/mod.rs @@ -49,8 +49,8 @@ pub struct Query { short, long, global = true, - help = "Endpoint to retrieve network state from. Defaults to http://api.explorer.aleo.org/v1.", - default_value = "http://api.explorer.aleo.org/v1" + help = "Endpoint to retrieve network state from. Defaults to https://api.explorer.aleo.org/v1.", + default_value = "https://api.explorer.aleo.org/v1" )] pub endpoint: String, #[clap(short, long, global = true, help = "Network to use. Defaults to mainnet.", default_value = "mainnet")] @@ -79,7 +79,7 @@ impl Command for Query { QueryCommands::Stateroot { command } => command.apply(context, ())?, QueryCommands::Committee { command } => command.apply(context, ())?, QueryCommands::Mempool { command } => { - if self.endpoint == "http://api.explorer.aleo.org/v1" { + if self.endpoint == "https://api.explorer.aleo.org/v1" { tracing::warn!( "⚠️ `leo query mempool` is only valid when using a custom endpoint. Specify one using `--endpoint`." ); @@ -87,7 +87,7 @@ impl Command for Query { command.apply(context, ())? } QueryCommands::Peers { command } => { - if self.endpoint == "http://api.explorer.aleo.org/v1" { + if self.endpoint == "https://api.explorer.aleo.org/v1" { tracing::warn!( "⚠️ `leo query peers` is only valid when using a custom endpoint. Specify one using `--endpoint`." );