We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69ebaca commit 3acfa64Copy full SHA for 3acfa64
packages/serializer/src/types/monomorphics.ts
@@ -1,4 +1,5 @@
1
import type { Box } from "@fleet-sdk/common";
2
+import type { AvlTreeData } from "../serializers/avlTreeSerializer";
3
import type { SConstant } from "../sigmaConstant";
4
import { SMonomorphicType } from "./base";
5
@@ -22,7 +23,7 @@ export class SBoxType extends SMonomorphicType<SConstant<Box<bigint>>> {
22
23
}
24
25
-export class SAvlTreeType extends SMonomorphicType<SConstant<Box<bigint>>> {
26
+export class SAvlTreeType extends SMonomorphicType<AvlTreeData> {
27
get code(): 0x64 {
28
return 0x64;
29
0 commit comments