How do I generate a proof in noir_js

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

I think this may have been answered on discord, but sharing here for completeness as well.

The solidity-example in this repo should help.

Thank you, I’ve verifying it now.

For anybody reading this in the future, click here for the Discord discussion.