Skip to content

Commit 415d497

Browse files
properly export Boolean type
1 parent 03fa8a4 commit 415d497

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

sdk/src/browser.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ export { logAndThrow } from "./utils.js";
6060
export {
6161
Address,
6262
Authorization,
63+
Boolean,
6364
BHP256,
6465
BHP512,
6566
BHP768,

sdk/src/wasm.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
export {
22
Address,
33
Authorization,
4+
Boolean,
45
BHP256,
56
BHP512,
67
BHP768,

sdk/tests/arithmetic.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sinon from "sinon";
22
import { expect } from "chai";
3-
import { Field, Scalar, Group} from "../src/node.js";
3+
import { Field, Scalar, Group, Boolean} from "../src/node.js";
44
import { FieldGenerator, GroupGenerator, ScalarGenerator } from "./data/algebra.js";
55

66
describe('Field and Group Arithmetic Tests', () => {

0 commit comments

Comments
 (0)