From 0db5344fb2a9c1d896f4cac8f7c15e95ef6a1e95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joseph-Andr=C3=A9=20Turk?= Date: Wed, 9 Oct 2024 18:46:21 +0200 Subject: [PATCH] feat: add exported functions for mocked mode chore: fixed typo chore: cleaner export --- src/sdk/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sdk/index.ts b/src/sdk/index.ts index 7f29e3c..13c3f2a 100644 --- a/src/sdk/index.ts +++ b/src/sdk/index.ts @@ -36,6 +36,8 @@ export type FhevmInstance = { getPublicParams: () => PublicParams; }; +export { generateKeypair, createEIP712 } from './keypair'; + export const createInstance = async ( config: FhevmInstanceConfig, ): Promise => {