Skip to main content
Version: 0.5.1

Solidity Verifier

For certain applications, it may be desirable to run the verifier as a smart contract instead of on a local machine.

Compile a Solidity verifier contract for your Noir program by running:

nargo codegen-verifier

A new contract folder would then be generated in your project directory, containing the Solidity file plonk_vk.sol. It can be deployed on any EVM blockchain acting as a verifier smart contract.

Note: It is possible to compile verifier contracts of Noir programs for other smart contract platforms as long as the proving backend supplies an implementation.

Barretenberg, the default proving backend for Nargo, supports compilation of verifier contracts in Solidity only for the time being.

Verify

To verify a proof using the Solidity verifier contract, call the verify function with the following signature:

function verify(bytes calldata _proof, bytes32[] calldata _publicInputs) external view returns (bool)

Public Inputs

tip

A circuit doesn't have the concept of a return value. Return values are just syntactic sugar in Noir.

Under the hood, the return value is passed as an input to the circuit and is checked at the end of the circuit program.

The verifier contract uses the output (return) value of a Noir program as a public input. So if you have the following function

fn main(
// Public inputs
pubkey_x: pub Field,
pubkey_y: pub Field,
// Private inputs
priv_key: Field,
) -> pub Field

then verify in plonk_vk.sol will expect 3 public inputs. Passing two inputs will result in an error like Reason: PUBLIC_INPUT_COUNT_INVALID(3, 2).

In this case the 3 inputs to verify would be ordered as [pubkey_x, pubkey_y, return].

Struct inputs

Consider the following program:

struct Type1 {
val1: Field,
val2: Field,
}

struct Nested {
t1: Type1,
is_true: bool,
}

fn main(x: pub Field, nested: pub Nested, y: pub Field) {
//...
}

Structs will be flattened so that the array of inputs is 1-dimensional array. The order of these inputs would be flattened to: [x, nested.is_true, nested.t1.val1, nested.t1.val2, y]