@@ -282,7 +282,7 @@ pub(crate) fn internal_declare(cfg: &Config, network: &str) -> Result<()> {
282282 load_env_vars ( ) ;
283283
284284 if cfg. dry_run {
285- println ! ( "Would declare contract on network: {}" , network ) ;
285+ println ! ( "Would declare contract on network: {network}" ) ;
286286 return Ok ( ( ) ) ;
287287 }
288288
@@ -304,7 +304,7 @@ pub(crate) fn internal_declare(cfg: &Config, network: &str) -> Result<()> {
304304 // Implementation would depend on Starknet CLI integration
305305 // This is a placeholder for the actual declare logic
306306 println ! ( "🚧 Contract declaration functionality coming soon" ) ;
307- println ! ( "Network: {}" , network ) ;
307+ println ! ( "Network: {network}" ) ;
308308 println ! ( "Contract directory: {}" , cairo_dir. display( ) ) ;
309309
310310 Ok ( ( ) )
@@ -326,7 +326,7 @@ pub fn run_deploy(cfg: &Config, class_hash: Option<&str>) -> Result<()> {
326326 Some ( hash) => hash. to_string ( ) ,
327327 None => "<class_hash_from_declare>" . to_string ( ) , // Placeholder for dry-run
328328 } ;
329- println ! ( "Would deploy contract with class hash: {}" , hash ) ;
329+ println ! ( "Would deploy contract with class hash: {hash}" ) ;
330330 return Ok ( ( ) ) ;
331331 }
332332
@@ -358,7 +358,7 @@ pub fn run_deploy(cfg: &Config, class_hash: Option<&str>) -> Result<()> {
358358 // Implementation would depend on Starknet CLI integration
359359 // This is a placeholder for the actual deploy logic
360360 println ! ( "🚧 Contract deployment functionality coming soon" ) ;
361- println ! ( "Class hash: {}" , hash ) ;
361+ println ! ( "Class hash: {hash}" ) ;
362362
363363 Ok ( ( ) )
364364}
@@ -408,10 +408,7 @@ pub fn run_verify_onchain(cfg: &Config, address: Option<&str>) -> Result<()> {
408408 }
409409
410410 if cfg. dry_run {
411- println ! (
412- "Would verify proof on-chain at address: {}" ,
413- contract_address
414- ) ;
411+ println ! ( "Would verify proof on-chain at address: {contract_address}" ) ;
415412 return Ok ( ( ) ) ;
416413 }
417414
@@ -422,7 +419,7 @@ pub fn run_verify_onchain(cfg: &Config, address: Option<&str>) -> Result<()> {
422419 // Implementation would depend on Starknet CLI integration
423420 // This is a placeholder for the actual on-chain verification logic
424421 println ! ( "🚧 On-chain verification functionality coming soon" ) ;
425- println ! ( "Contract address: {}" , contract_address ) ;
422+ println ! ( "Contract address: {contract_address}" ) ;
426423 println ! ( "Calldata: {}" , calldata_path. display( ) ) ;
427424
428425 Ok ( ( ) )
0 commit comments