@noir-lang/acvm_js 1.0.0-beta.4-61156aa.nightly → 1.0.0-beta.4-d8e4de4.nightly

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -131,20 +131,6 @@ export type BuildInfo = {
131
131
 
132
132
 
133
133
 
134
- export type RawAssertionPayload = {
135
- selector: string;
136
- data: string[];
137
- };
138
-
139
- export type ExecutionError = Error & {
140
- callStack?: string[];
141
- rawAssertionPayload?: RawAssertionPayload;
142
- acirFunctionId?: number;
143
- brilligFunctionId?: number;
144
- };
145
-
146
-
147
-
148
134
  export type ForeignCallInput = string[]
149
135
  export type ForeignCallOutput = string | string[]
150
136
 
@@ -159,6 +145,20 @@ export type ForeignCallHandler = (name: string, inputs: ForeignCallInput[]) => P
159
145
 
160
146
 
161
147
 
148
+ export type RawAssertionPayload = {
149
+ selector: string;
150
+ data: string[];
151
+ };
152
+
153
+ export type ExecutionError = Error & {
154
+ callStack?: string[];
155
+ rawAssertionPayload?: RawAssertionPayload;
156
+ acirFunctionId?: number;
157
+ brilligFunctionId?: number;
158
+ };
159
+
160
+
161
+
162
162
  export type StackItem = {
163
163
  index: number;
164
164
  witness: WitnessMap;
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noir-lang/acvm_js",
3
- "version": "1.0.0-beta.4-61156aa.nightly",
3
+ "version": "1.0.0-beta.4-d8e4de4.nightly",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/web/acvm_js.d.ts CHANGED
@@ -131,20 +131,6 @@ export type BuildInfo = {
131
131
 
132
132
 
133
133
 
134
- export type RawAssertionPayload = {
135
- selector: string;
136
- data: string[];
137
- };
138
-
139
- export type ExecutionError = Error & {
140
- callStack?: string[];
141
- rawAssertionPayload?: RawAssertionPayload;
142
- acirFunctionId?: number;
143
- brilligFunctionId?: number;
144
- };
145
-
146
-
147
-
148
134
  export type ForeignCallInput = string[]
149
135
  export type ForeignCallOutput = string | string[]
150
136
 
@@ -159,6 +145,20 @@ export type ForeignCallHandler = (name: string, inputs: ForeignCallInput[]) => P
159
145
 
160
146
 
161
147
 
148
+ export type RawAssertionPayload = {
149
+ selector: string;
150
+ data: string[];
151
+ };
152
+
153
+ export type ExecutionError = Error & {
154
+ callStack?: string[];
155
+ rawAssertionPayload?: RawAssertionPayload;
156
+ acirFunctionId?: number;
157
+ brilligFunctionId?: number;
158
+ };
159
+
160
+
161
+
162
162
  export type StackItem = {
163
163
  index: number;
164
164
  witness: WitnessMap;
Binary file