diff --git a/cw-orch-daemon/examples/hd_index.rs b/cw-orch-daemon/examples/hd_index.rs index 0423c0aa7..c407e3496 100644 --- a/cw-orch-daemon/examples/hd_index.rs +++ b/cw-orch-daemon/examples/hd_index.rs @@ -10,7 +10,7 @@ pub fn main() -> anyhow::Result<()> { pretty_env_logger::init(); // Used to log contract and chain interactions let network = networks::LOCAL_JUNO; - // There is no need to register a mnemonic to use this daemon querier + // The mnemonic is read from environment variables automatically, no need to specify in this builders let sender = CosmosOptions::default() .hd_index(5) .authz_granter(&Addr::unchecked(LOCAL_JUNO_GRANTER)); diff --git a/cw-orch-daemon/examples/querier-daemon.rs b/cw-orch-daemon/examples/querier-daemon.rs index 2b6fb3234..54d85dc04 100644 --- a/cw-orch-daemon/examples/querier-daemon.rs +++ b/cw-orch-daemon/examples/querier-daemon.rs @@ -10,7 +10,7 @@ pub fn main() -> anyhow::Result<()> { pretty_env_logger::init(); // Used to log contract and chain interactions let network = networks::LOCAL_JUNO; - // There is no need to register a mnemonic to use this daemon querier + // QueryOnlyDaemon doesn't need a mnemonic to function let chain: QueryOnlyDaemon = QueryOnlyDaemon::builder(network).build_sender(())?; let balances = chain