From 28eca3514a456bb46306e6884db06f6d19703437 Mon Sep 17 00:00:00 2001 From: ANtutov Date: Tue, 16 Dec 2025 10:51:51 +0200 Subject: [PATCH] fix: correct root getter JSDoc return type --- packages/group/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/group/src/index.ts b/packages/group/src/index.ts index 451b4cea4..c8f584043 100644 --- a/packages/group/src/index.ts +++ b/packages/group/src/index.ts @@ -34,7 +34,7 @@ export class Group { /** * Returns the root hash of the tree. - * @returns The root hash as a string. + * @returns The root hash as a bigint. */ public get root(): bigint { return this.leanIMT.root ? this.leanIMT.root : 0n