From 92b6c3a7124a2d945ad0104e0946927aa8b42dd5 Mon Sep 17 00:00:00 2001 From: maximopalopoli Date: Fri, 3 Oct 2025 09:20:54 -0300 Subject: [PATCH] Add hoodi option to the circom example --- examples/circom/.env.example | 2 +- examples/circom/src/config.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/circom/.env.example b/examples/circom/.env.example index 74465a939f..62d4c11848 100644 --- a/examples/circom/.env.example +++ b/examples/circom/.env.example @@ -3,4 +3,4 @@ ETH_RPC_URL= PRIVATE_KEY= # Deploy the contract with make deploy_contract_devnet FIBONACCI_CONTRACT_ADDRESS= -NETWORK= +NETWORK= diff --git a/examples/circom/src/config.rs b/examples/circom/src/config.rs index 1ef2151c6c..b1770cb118 100644 --- a/examples/circom/src/config.rs +++ b/examples/circom/src/config.rs @@ -32,6 +32,7 @@ impl EnvConfig { "holesky-stage" => Network::HoleskyStage, "holesky" => Network::Holesky, "mainnet" => Network::Mainnet, + "hoodi" => Network::Hoodi, _ => panic!("Unsupported NETWORK value"), };