A mapping of one public variable of the Circom circuit to one or more values

interface ICircuitPublicVar {
    value: Uint8Array | Uint8Array[];
    varName: string;
}

Properties

Properties

value: Uint8Array | Uint8Array[]

A circuit variable can be a single value or an array and thus map to one or more values

varName: string