Skip to content

Commit

Permalink
feat: add exports of JS black box solvers to noirJS (#3295)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Oct 26, 2023
1 parent 4894162 commit 8369871
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions tooling/noir_js/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
import * as acvm from '@noir-lang/acvm_js';
import * as abi from '@noir-lang/noirc_abi';

export { acvm, abi };

export { WitnessMap } from '@noir-lang/acvm_js';
export {
ecdsa_secp256r1_verify,
ecdsa_secp256k1_verify,
keccak256,
blake2s256,
sha256,
xor,
and,
} from '@noir-lang/acvm_js';
export { WitnessMap, ForeignCallHandler, ForeignCallInput, ForeignCallOutput } from '@noir-lang/acvm_js';

export { Noir } from './program.js';

0 comments on commit 8369871

Please sign in to comment.