Comparing version 0.0.9 to 0.0.10
import { Struct } from "o1js"; | ||
import { ZKSeq } from "./dna/struct"; | ||
import { dnaBaseToField } from "./utils/dnaBaseToField"; | ||
import { DynamicArray } from "./utils/dynamicArray"; | ||
// Export | ||
export { ZKSeq, dnaBaseToField }; | ||
export { ZKSeq, dnaBaseToField, DynamicArray }; |
{ | ||
"name": "ozkarjs", | ||
"version": "0.0.9", | ||
"version": "0.0.10", | ||
"module": "index.ts", | ||
@@ -16,2 +16,2 @@ "type": "module", | ||
} | ||
} | ||
} |
@@ -9,3 +9,3 @@ import { | ||
import { expect, test, describe } from "bun:test"; | ||
import { DynamicArray } from "../utils/dynamicArray"; | ||
describe("dnaBaseToField", () => { | ||
@@ -65,5 +65,5 @@ test("should convert ATCG to a field array", () => { | ||
test("Dyamic array type", async () => { | ||
class FieldArray extends DynamicArray(Field, 8) {} | ||
}); | ||
// test("Dyamic array type", async () => { | ||
// class FieldArray extends DynamicArray(Field, 8) {} | ||
// }); | ||
}); |
22348
11
456