From f8eba3644b7b82de33312f3e3c7000adbaaa4997 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Tue, 11 Jul 2023 01:51:05 -0400 Subject: [PATCH] refactor: export getConsensusOptimisticUpdate and getCommitteeHash --- src/node/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/node/index.ts b/src/node/index.ts index 3756556..f358527 100644 --- a/src/node/index.ts +++ b/src/node/index.ts @@ -12,3 +12,4 @@ function createDefaultClient(beaconUrl: string): Client { export { Client, Prover, Store, createDefaultClient }; export * from "#interfaces.js"; +export { getConsensusOptimisticUpdate, getCommitteeHash } from "#util.js";