Skip to content

Commit 6ce0477

Browse files
Merge pull request #1059 from ProvableHQ/feat/integer-types
Add Integer types
2 parents 7cd9403 + 93fe1da commit 6ce0477

File tree

6 files changed

+773
-2
lines changed

6 files changed

+773
-2
lines changed

sdk/src/browser.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ export {
7373
EncryptionToolkit,
7474
Field,
7575
Group,
76+
I8,
77+
I16,
78+
I32,
79+
I64,
80+
I128,
7681
OfflineQuery,
7782
Pedersen64,
7883
Pedersen128,
@@ -92,6 +97,11 @@ export {
9297
Scalar,
9398
Transaction,
9499
Transition,
100+
U8,
101+
U16,
102+
U32,
103+
U64,
104+
U128,
95105
VerifyingKey,
96106
ViewKey,
97107
initThreadPool,

sdk/src/wasm.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ export {
1414
ExecutionResponse,
1515
Field,
1616
Group,
17+
I8,
18+
I16,
19+
I32,
20+
I64,
21+
I128,
1722
OfflineQuery,
1823
Metadata,
1924
Pedersen64,
@@ -34,6 +39,11 @@ export {
3439
Signature,
3540
Transaction,
3641
Transition,
42+
U8,
43+
U16,
44+
U32,
45+
U64,
46+
U128,
3747
VerifyingKey,
3848
ViewKey,
3949
initThreadPool,

0 commit comments

Comments
 (0)