- 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
10 lines
128 B
Plaintext
Executable File
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();
|