I want to generate a proof inside a Node server, and then submit it onchain for verification.
I create the witness and result:
```js
noirResult = await noir.execute({
<parameters go here>
})
```
But I don’t know how to get from those values to a proof acceptable to Verifier.sol.
In case it helps, this is how I generate Verifier.sol :
```sh
bb write_vk -b ./target/zkBank.json -o ./target --oracle_hash keccak
bb write_solidity_verifier -k ./target/vk -o ./target/Verifier.sol
```
Thank you, Ori