@aztec/protocol-contracts 0.49.2 → 0.51.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.
@@ -1 +1 @@
1
- {"version":3,"file":"artifact.d.ts","sourceRoot":"","sources":["../../src/key-registry/artifact.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,mBAAmB,kDAAmE,CAAC"}
1
+ {"version":3,"file":"artifact.d.ts","sourceRoot":"","sources":["../../src/key-registry/artifact.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,mBAAmB,kDAAgE,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import { loadContractArtifact } from '@aztec/types/abi';
2
- import NewKeyRegistryJson from '../../artifacts/NewKeyRegistry.json' assert { type: 'json' };
3
- export const KeyRegistryArtifact = loadContractArtifact(NewKeyRegistryJson);
4
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXJ0aWZhY3QuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMva2V5LXJlZ2lzdHJ5L2FydGlmYWN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBR3hELE9BQU8sa0JBQWtCLE1BQU0scUNBQXFDLENBQUMsU0FBUyxJQUFJLEVBQUUsTUFBTSxFQUFFLENBQUM7QUFFN0YsTUFBTSxDQUFDLE1BQU0sbUJBQW1CLEdBQUcsb0JBQW9CLENBQUMsa0JBQTBDLENBQUMsQ0FBQyJ9
2
+ import KeyRegistryJson from '../../artifacts/KeyRegistry.json' assert { type: 'json' };
3
+ export const KeyRegistryArtifact = loadContractArtifact(KeyRegistryJson);
4
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXJ0aWZhY3QuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMva2V5LXJlZ2lzdHJ5L2FydGlmYWN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBR3hELE9BQU8sZUFBZSxNQUFNLGtDQUFrQyxDQUFDLFNBQVMsSUFBSSxFQUFFLE1BQU0sRUFBRSxDQUFDO0FBRXZGLE1BQU0sQ0FBQyxNQUFNLG1CQUFtQixHQUFHLG9CQUFvQixDQUFDLGVBQXVDLENBQUMsQ0FBQyJ9
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@aztec/protocol-contracts",
3
3
  "homepage": "https://github.com/AztecProtocol/aztec-packages/tree/master/yarn-project/protocol-contracts",
4
4
  "description": "Canonical Noir contracts for the Aztec Network",
5
- "version": "0.49.2",
5
+ "version": "0.51.0",
6
6
  "type": "module",
7
7
  "exports": {
8
8
  ".": "./dest/index.js",
@@ -64,9 +64,9 @@
64
64
  ]
65
65
  },
66
66
  "dependencies": {
67
- "@aztec/circuits.js": "0.49.2",
68
- "@aztec/foundation": "0.49.2",
69
- "@aztec/types": "0.49.2",
67
+ "@aztec/circuits.js": "0.51.0",
68
+ "@aztec/foundation": "0.51.0",
69
+ "@aztec/types": "0.51.0",
70
70
  "lodash.omit": "^4.5.0",
71
71
  "tslib": "^2.4.0"
72
72
  },
@@ -1,6 +1,6 @@
1
1
  import { loadContractArtifact } from '@aztec/types/abi';
2
2
  import { type NoirCompiledContract } from '@aztec/types/noir';
3
3
 
4
- import NewKeyRegistryJson from '../../artifacts/NewKeyRegistry.json' assert { type: 'json' };
4
+ import KeyRegistryJson from '../../artifacts/KeyRegistry.json' assert { type: 'json' };
5
5
 
6
- export const KeyRegistryArtifact = loadContractArtifact(NewKeyRegistryJson as NoirCompiledContract);
6
+ export const KeyRegistryArtifact = loadContractArtifact(KeyRegistryJson as NoirCompiledContract);