Files
aitbc/apps/zk-circuits/test2.circom
oib 15427c96c0 chore: update file permissions to executable across repository
- Change file mode from 644 to 755 for all project files
- Add chain_id parameter to get_balance RPC endpoint with default "ait-devnet"
- Rename Miner.extra_meta_data to extra_metadata for consistency
2026-03-06 22:17:54 +01:00

10 lines
128 B
Plaintext
Executable File

pragma circom 2.0.0;
template Test() {
signal input in;
signal output out;
out <== in;
}
component main = Test();