o1js
Version:
TypeScript framework for zk-SNARKs and zkApps
144 lines (128 loc) • 4.84 kB
text/typescript
import { Field } from '../field.js';
import { ZkProgram } from '../../proof-system/zkprogram.js';
import { Spec, boolean, equivalentAsync, fieldWithRng } from '../../testing/equivalent.js';
import { Random } from '../../testing/property.js';
import { assert } from '../gadgets/common.js';
import { Gadgets } from '../gadgets/gadgets.js';
import { Gates } from '../gates.js';
import { constraintSystem, contains } from '../../testing/constraint-system.js';
import { FeatureFlags } from '../../proof-system/feature-flags.js';
import { Cache } from '../../proof-system/cache.js';
import { RuntimeTable } from '../gadgets/runtime-table.js';
let uint = (n: number | bigint): Spec<bigint, Field> => {
return fieldWithRng(Random.bignat((1n << BigInt(n)) - 1n));
};
// Range-check tests
{
let RangeCheck = ZkProgram({
name: 'range-check',
methods: {
three12Bit: {
privateInputs: [Field, Field, Field],
async method(v0: Field, v1: Field, v2: Field) {
// Dummy range check to make sure the lookup table is initialized
// It should never fail because 64 > 12
Gadgets.rangeCheck64(v0);
Gadgets.rangeCheck3x12(v0, v1, v2);
},
},
},
});
// constraint system sanity check
constraintSystem.fromZkProgram(RangeCheck, 'three12Bit', contains(['Lookup']));
await RangeCheck.compile();
await equivalentAsync({ from: [uint(12), uint(12), uint(12)], to: boolean }, { runs: 3 })(
(x, y, z) => {
assert(x < 1n << 12n);
assert(y < 1n << 12n);
assert(z < 1n << 12n);
return true;
},
async (x, y, z) => {
let { proof } = await RangeCheck.three12Bit(x, y, z);
return await RangeCheck.verify(proof);
}
);
}
// Unit test with constant indices using the deprecated API for runtime tables
{
let RuntimeTable = ZkProgram({
name: 'runtime-table',
methods: {
runtimeTable: {
privateInputs: [Field, Field, Field],
async method(v0: Field, v1: Field, v2: Field) {
let tableId = 2;
let indices = [0n, 1n, 2n, 3n, 4n, 5n, 6n, 7n, 8n, 9n];
Gates.addRuntimeTableConfig(tableId, indices);
// values are inserted into the table in the given positions
Gadgets.inTable(tableId, [5n, v0], [6n, v1], [7n, v2]);
// a second time can be used to check more values in more positions
Gadgets.inTable(tableId, [2n, v0]);
// can ask for the same index asked previously
Gadgets.inTable(tableId, [6n, v1]);
// even multiple times in the same call
Gadgets.inTable(tableId, [6n, v1], [6n, v1]);
},
},
},
});
// constraint system sanity check
constraintSystem.fromZkProgram(RuntimeTable, 'runtimeTable', contains(['Lookup']));
// check feature flags are set up correctly
const featureFlags = await FeatureFlags.fromZkProgram(RuntimeTable, true);
assert(featureFlags.lookup === true);
assert(featureFlags.runtimeTables === true);
await RuntimeTable.compile({
cache: Cache.None,
forceRecompile: true,
withRuntimeTables: true,
});
await equivalentAsync({ from: [uint(12), uint(12), uint(12)], to: boolean }, { runs: 1 })(
(x, y, z) => {
assert(x < 1n << 12n);
assert(y < 1n << 12n);
assert(z < 1n << 12n);
return true;
},
async (x, y, z) => {
let { proof } = await RuntimeTable.runtimeTable(x, y, z);
return await RuntimeTable.verify(proof);
}
);
}
// New API runtime table tests using field indices
{
let PowersetProgram = ZkProgram({
name: 'powers-of-two',
methods: {
runtimeTable: {
privateInputs: [Field, Field],
async method(exponent: Field, result: Field) {
let tableId = 2;
let exponents = [0n, 1n, 2n, 3n, 4n, 5n, 6n, 7n, 8n, 9n];
// At configuration time, we define the indices as bigints
let powers = new RuntimeTable(tableId, exponents);
// At lookup time, we can use Field values as indices
// iterate over the exponents and insert the corresponding power of two
for (let exp of exponents) {
powers.insert([[Field.from(exp), Field.from(2n ** exp)]]);
}
// lookup the power of two for the given exponent
powers.lookup(exponent, result);
powers.check(); // flush pending lookups
},
},
},
});
// constraint system sanity check
constraintSystem.fromZkProgram(PowersetProgram, 'runtimeTable', contains(['Lookup']));
await PowersetProgram.compile({
cache: Cache.None,
forceRecompile: true,
withRuntimeTables: true,
});
let { proof } = await PowersetProgram.runtimeTable(Field.from(5n), Field.from(32n));
let verified = await PowersetProgram.verify(proof);
assert(verified === true);
}