Skip to content

Commit

Permalink
Adds missing imports for Schnorr/ECDSA calldata builder bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
raugfer committed Feb 13, 2025
1 parent ae7f62b commit 012466f
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion tools/npm/garaga_ts/src/node/api.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
// This files provides a ts-like interface for garaga_rs

import { msm_calldata_builder, mpc_calldata_builder, to_twistededwards, to_weirstrass, get_groth16_calldata, get_honk_calldata, parse_honk_proof, parse_honk_verification_key } from '../wasm/pkg/garaga_rs';
import {
msm_calldata_builder,
mpc_calldata_builder,
schnorr_calldata_builder,
ecdsa_calldata_builder,
to_twistededwards,
to_weirstrass,
get_groth16_calldata,
get_honk_calldata,
parse_honk_proof,
parse_honk_verification_key,
} from '../wasm/pkg/garaga_rs';
import { CurveId } from './definitions';
import { Groth16Proof, Groth16VerifyingKey } from './starknet/groth16ContractGenerator/parsingUtils';
import { HonkFlavor, HonkProof, HonkVerifyingKey } from './starknet/honkContractGenerator/parsingUtils';
Expand Down

0 comments on commit 012466f

Please sign in to comment.