@noir-lang/noir_js 0.34.0 → 0.35.0

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.
package/lib/index.cjs CHANGED
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.abi = exports.acvm = exports.Noir = exports.and = exports.xor = exports.sha256 = exports.blake2s256 = exports.keccak256 = exports.ecdsa_secp256k1_verify = exports.ecdsa_secp256r1_verify = void 0;
26
+ exports.abi = exports.acvm = exports.Noir = exports.and = exports.xor = exports.blake2s256 = exports.keccak256 = exports.ecdsa_secp256k1_verify = exports.ecdsa_secp256r1_verify = void 0;
27
27
  const acvm = __importStar(require("@noir-lang/acvm_js"));
28
28
  exports.acvm = acvm;
29
29
  const abi = __importStar(require("@noir-lang/noirc_abi"));
@@ -33,7 +33,6 @@ Object.defineProperty(exports, "ecdsa_secp256r1_verify", { enumerable: true, get
33
33
  Object.defineProperty(exports, "ecdsa_secp256k1_verify", { enumerable: true, get: function () { return acvm_js_1.ecdsa_secp256k1_verify; } });
34
34
  Object.defineProperty(exports, "keccak256", { enumerable: true, get: function () { return acvm_js_1.keccak256; } });
35
35
  Object.defineProperty(exports, "blake2s256", { enumerable: true, get: function () { return acvm_js_1.blake2s256; } });
36
- Object.defineProperty(exports, "sha256", { enumerable: true, get: function () { return acvm_js_1.sha256; } });
37
36
  Object.defineProperty(exports, "xor", { enumerable: true, get: function () { return acvm_js_1.xor; } });
38
37
  Object.defineProperty(exports, "and", { enumerable: true, get: function () { return acvm_js_1.and; } });
39
38
  var program_js_1 = require("./program.cjs");
package/lib/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as acvm from '@noir-lang/acvm_js';
2
2
  import * as abi from '@noir-lang/noirc_abi';
3
3
  import { CompiledCircuit } from '@noir-lang/types';
4
- export { ecdsa_secp256r1_verify, ecdsa_secp256k1_verify, keccak256, blake2s256, sha256, xor, and, } from '@noir-lang/acvm_js';
4
+ export { ecdsa_secp256r1_verify, ecdsa_secp256k1_verify, keccak256, blake2s256, xor, and } from '@noir-lang/acvm_js';
5
5
  export { InputMap } from '@noir-lang/noirc_abi';
6
6
  export { WitnessMap, ForeignCallHandler, ForeignCallInput, ForeignCallOutput } from '@noir-lang/acvm_js';
7
7
  export { Noir } from './program.js';
package/lib/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as acvm from '@noir-lang/acvm_js';
2
2
  import * as abi from '@noir-lang/noirc_abi';
3
- export { ecdsa_secp256r1_verify, ecdsa_secp256k1_verify, keccak256, blake2s256, sha256, xor, and, } from '@noir-lang/acvm_js';
3
+ export { ecdsa_secp256r1_verify, ecdsa_secp256k1_verify, keccak256, blake2s256, xor, and } from '@noir-lang/acvm_js';
4
4
  export { Noir } from "./program.mjs";
5
5
  /** @ignore */
6
6
  export { acvm, abi };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "contributors": [
4
4
  "The Noir Team <team@noir-lang.org>"
5
5
  ],
6
- "version": "0.34.0",
6
+ "version": "0.35.0",
7
7
  "packageManager": "yarn@3.5.1",
8
8
  "license": "(MIT OR Apache-2.0)",
9
9
  "type": "module",
@@ -17,9 +17,9 @@
17
17
  "url": "https://github.com/noir-lang/noir/issues"
18
18
  },
19
19
  "dependencies": {
20
- "@noir-lang/acvm_js": "0.50.0",
21
- "@noir-lang/noirc_abi": "0.34.0",
22
- "@noir-lang/types": "0.34.0"
20
+ "@noir-lang/acvm_js": "0.51.0",
21
+ "@noir-lang/noirc_abi": "0.35.0",
22
+ "@noir-lang/types": "0.35.0"
23
23
  },
24
24
  "files": [
25
25
  "lib",