mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-07 00:03:07 +00:00
* chore: setup rln as a new package * chore: migrate src * fix: wasm loading, tests, config * chore: fix Karma CI * fix: bundler * chore: copy dist resources * chore(rln): enable all tests * chore: increase karma timeouts
14 lines
277 B
TypeScript
14 lines
277 B
TypeScript
declare const verificationKey: {
|
|
protocol: string;
|
|
curve: string;
|
|
nPublic: number;
|
|
vk_alpha_1: string[];
|
|
vk_beta_2: string[][];
|
|
vk_gamma_2: string[][];
|
|
vk_delta_2: string[][];
|
|
vk_alphabeta_12: string[][][];
|
|
IC: string[][];
|
|
};
|
|
|
|
export default verificationKey;
|